summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2008-04-19 23:22:40 +0000
committerBertrik Sikken <bertrik@sikken.nl>2008-04-19 23:22:40 +0000
commitb3c44deaf681e571143513f26e5e39855478caa7 (patch)
tree52bef200f5cde5ad530a0dc044e1c3ebdf2fff5e
parent7f4a713af4f2e94e0c8f7f4775eb8f2e41b54beb (diff)
downloadrockbox-b3c44deaf681e571143513f26e5e39855478caa7.tar.gz
rockbox-b3c44deaf681e571143513f26e5e39855478caa7.zip
Made strictly local functions static (command_queue_sync_callback and run_command_queue) in tagcache.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17176 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tagcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index d7e1fa1cfc..f800c5646b 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -3028,7 +3028,7 @@ static bool command_queue_is_full(void)
return (next == command_queue_ridx);
}
-bool command_queue_sync_callback(void)
+static bool command_queue_sync_callback(void)
{
struct master_header myhdr;
@@ -3074,7 +3074,7 @@ bool command_queue_sync_callback(void)
return true;
}
-void run_command_queue(bool force)
+static void run_command_queue(bool force)
{
if (COMMAND_QUEUE_IS_EMPTY)
return;