diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-12-25 14:01:47 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-12-25 14:01:47 +0000 |
commit | 2597a1349772fe505d27cb94392eb4d8a3c3b35d (patch) | |
tree | 185a4809430f9dded488bb1b058d3f97345058a3 /apps/playback.c | |
parent | 37aeb12cc99cc22f62c44d5b0adcae35d0c471d8 (diff) |
Next round of static'ing and related fixes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11836 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.c')
-rw-r--r-- | apps/playback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index 7873700247..9c81210dcc 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -3552,7 +3552,7 @@ static void audio_playback_init(void) #if MEM > 8 /* we dont want this rebuffering on targets with little ram because the disk may never spin down */ -bool ata_fillbuffer_callback(void) +static bool ata_fillbuffer_callback(void) { queue_post(&audio_queue, Q_AUDIO_FILL_BUFFER_IF_ACTIVE_ATA, 0); return true; |