From b3c44deaf681e571143513f26e5e39855478caa7 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sat, 19 Apr 2008 23:22:40 +0000 Subject: [PATCH] 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 --- apps/tagcache.c | 4 ++-- 1 file 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;