From: Ralph Boehme Date: Wed, 13 Feb 2013 15:00:23 +0000 (+0100) Subject: Declare as static X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=commitdiff_plain;h=b54746083f7f139ebca03f946b1f934b5fe03d13 Declare as static --- diff --git a/etc/spotlight/slmod_sparql_parser.c b/etc/spotlight/slmod_sparql_parser.c index 52482b06..252514d4 100644 --- a/etc/spotlight/slmod_sparql_parser.c +++ b/etc/spotlight/slmod_sparql_parser.c @@ -1861,7 +1861,7 @@ static time_t isodate2unix(const char *s) return mktime(&tm); } -const char *map_daterange(const char *dateattr, time_t date1, time_t date2) +static const char *map_daterange(const char *dateattr, time_t date1, time_t date2) { EC_INIT; char *result = NULL; @@ -1921,7 +1921,7 @@ static char *map_type_search(const char *attr, char op, const char *val) return result; } -const char *map_expr(const char *attr, char op, const char *val) +static const char *map_expr(const char *attr, char op, const char *val) { EC_INIT; char *result = NULL;