From: funman Date: Fri, 14 May 2010 22:16:40 +0000 (+0000) Subject: another cast ssize_t -> long X-Git-Url: https://repo.or.cz/w/kugel-rb.git/commitdiff_plain/18894b46fccc7751a1d1c59df0a8e9a2158c4cb4 another cast ssize_t -> long git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26034 a1c6a512-1295-4272-9138-f99709370657 --- diff --git a/apps/plugins/mpegplayer/pcm_output.c b/apps/plugins/mpegplayer/pcm_output.c index e901336c1..a5d8f86e5 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)