diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-14 22:16:40 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-14 22:16:40 +0000 |
| commit | 9e974e4590aa32036ea45c8662d9293982192a48 (patch) | |
| tree | e85b8ec2533e6683e9c2a6753e8ee3918939a3dd /apps/plugins/mpegplayer | |
| parent | 84cd3763bd812877cd096ef09bc37661db3c8ec3 (diff) | |
| download | rockbox-9e974e4590aa32036ea45c8662d9293982192a48.zip rockbox-9e974e4590aa32036ea45c8662d9293982192a48.tar.gz rockbox-9e974e4590aa32036ea45c8662d9293982192a48.tar.bz2 rockbox-9e974e4590aa32036ea45c8662d9293982192a48.tar.xz | |
another cast ssize_t -> long
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26034 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer')
| -rw-r--r-- | apps/plugins/mpegplayer/pcm_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/pcm_output.c b/apps/plugins/mpegplayer/pcm_output.c index e901336..a5d8f86 100644 --- a/apps/plugins/mpegplayer/pcm_output.c +++ b/apps/plugins/mpegplayer/pcm_output.c @@ -99,7 +99,7 @@ static void get_more(unsigned char **start, size_t *size) /* Just show a warning about this - will never happen * without a bug in the audio thread code or a clobbered * buffer */ - DEBUGF("get_more: invalid size (%ld)\n", sz); + DEBUGF("get_more: invalid size (%ld)\n", (long)sz); } if (offset < -100*CLOCK_RATE/1000) |