summaryrefslogtreecommitdiff
path: root/apps/tagcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.c')
-rw-r--r--apps/tagcache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 02b8430396..f6c4ad334c 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -203,7 +203,7 @@ struct tempbuf_searchidx {
203/* Lookup buffer for fixing messed up index while after sorting. */ 203/* Lookup buffer for fixing messed up index while after sorting. */
204static long commit_entry_count; 204static long commit_entry_count;
205static long lookup_buffer_depth; 205static long lookup_buffer_depth;
206struct tempbuf_searchidx **lookup; 206static struct tempbuf_searchidx **lookup;
207 207
208/* Used when building the temporary file. */ 208/* Used when building the temporary file. */
209static int cachefd = -1, filenametag_fd; 209static int cachefd = -1, filenametag_fd;
@@ -773,9 +773,9 @@ static bool check_against_clause(long numeric, const char *str,
773 return false; 773 return false;
774} 774}
775 775
776bool check_clauses(struct tagcache_search *tcs, 776static bool check_clauses(struct tagcache_search *tcs,
777 struct index_entry *idx, 777 struct index_entry *idx,
778 struct tagcache_search_clause **clause, int count) 778 struct tagcache_search_clause **clause, int count)
779{ 779{
780 int i; 780 int i;
781 781