diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-12-25 14:01:47 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-12-25 14:01:47 +0000 |
| commit | 2597a1349772fe505d27cb94392eb4d8a3c3b35d (patch) | |
| tree | 185a4809430f9dded488bb1b058d3f97345058a3 /apps/tagcache.c | |
| parent | 37aeb12cc99cc22f62c44d5b0adcae35d0c471d8 (diff) | |
| download | rockbox-2597a1349772fe505d27cb94392eb4d8a3c3b35d.zip rockbox-2597a1349772fe505d27cb94392eb4d8a3c3b35d.tar.gz rockbox-2597a1349772fe505d27cb94392eb4d8a3c3b35d.tar.bz2 rockbox-2597a1349772fe505d27cb94392eb4d8a3c3b35d.tar.xz | |
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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 02b8430..f6c4ad3 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -203,7 +203,7 @@ struct tempbuf_searchidx { /* Lookup buffer for fixing messed up index while after sorting. */ static long commit_entry_count; static long lookup_buffer_depth; -struct tempbuf_searchidx **lookup; +static struct tempbuf_searchidx **lookup; /* Used when building the temporary file. */ static int cachefd = -1, filenametag_fd; @@ -773,9 +773,9 @@ static bool check_against_clause(long numeric, const char *str, return false; } -bool check_clauses(struct tagcache_search *tcs, - struct index_entry *idx, - struct tagcache_search_clause **clause, int count) +static bool check_clauses(struct tagcache_search *tcs, + struct index_entry *idx, + struct tagcache_search_clause **clause, int count) { int i; |