summaryrefslogtreecommitdiff
path: root/apps/tagcache.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-12-25 14:01:47 +0000
committerJens Arnold <amiconn@rockbox.org>2006-12-25 14:01:47 +0000
commit2597a1349772fe505d27cb94392eb4d8a3c3b35d (patch)
tree185a4809430f9dded488bb1b058d3f97345058a3 /apps/tagcache.c
parent37aeb12cc99cc22f62c44d5b0adcae35d0c471d8 (diff)
downloadrockbox-2597a1349772fe505d27cb94392eb4d8a3c3b35d.tar.gz
rockbox-2597a1349772fe505d27cb94392eb4d8a3c3b35d.zip
Next round of static'ing and related fixes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11836 a1c6a512-1295-4272-9138-f99709370657
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