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:
parent
7f4a713af4
commit
b3c44deaf6
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue