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
This commit is contained in:
Bertrik Sikken 2008-04-19 23:22:40 +00:00
parent 7f4a713af4
commit b3c44deaf6

View file

@ -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;