diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-03 16:23:37 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-03 16:23:37 +0000 |
| commit | f8a641d6f81c11056259b0d1b452d9beb4f5c9d7 (patch) | |
| tree | 282a3ce05db1cacec8b933641514a944cc9cbd3d /apps | |
| parent | 8a04f6203144b46909020d4ec5f91d680a2b88fd (diff) | |
| download | rockbox-f8a641d6f81c11056259b0d1b452d9beb4f5c9d7.zip rockbox-f8a641d6f81c11056259b0d1b452d9beb4f5c9d7.tar.gz rockbox-f8a641d6f81c11056259b0d1b452d9beb4f5c9d7.tar.bz2 rockbox-f8a641d6f81c11056259b0d1b452d9beb4f5c9d7.tar.xz | |
Renamed build_tagcache to tagcache_build to make it consistent with the function naming of the other functions in tagcache.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17331 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tagcache.c | 10 | ||||
| -rw-r--r-- | apps/tagcache.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 68b894f..e9a8dab 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -4154,7 +4154,7 @@ void tagcache_screensync_enable(bool state) tc_stat.syncscreen = state; } -void build_tagcache(const char *path) +void tagcache_build(const char *path) { struct tagcache_header header; bool ret; @@ -4323,11 +4323,11 @@ static void tagcache_thread(void) case Q_REBUILD: remove_files(); - build_tagcache("/"); + tagcache_build("/"); break; case Q_UPDATE: - build_tagcache("/"); + tagcache_build("/"); #ifdef HAVE_TC_RAMCACHE load_ramcache(); #endif @@ -4345,13 +4345,13 @@ static void tagcache_thread(void) { load_ramcache(); if (tc_stat.ramcache && global_settings.tagcache_autoupdate) - build_tagcache("/"); + tagcache_build("/"); } else #endif if (global_settings.tagcache_autoupdate) { - build_tagcache("/"); + tagcache_build("/"); /* This will be very slow unless dircache is enabled or target is flash based, but do it anyway for diff --git a/apps/tagcache.h b/apps/tagcache.h index 143062a..b9d6a29 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -169,7 +169,7 @@ struct tagcache_search { int idx_id; }; -void build_tagcache(const char *path); +void tagcache_build(const char *path); #ifdef __PCTOOL__ void tagcache_reverse_scan(void); |