From 6ef04a7f0e2540a78e3e197ad842b85d8119c15d Mon Sep 17 00:00:00 2001 From: Jeffrey Goode Date: Sat, 15 May 2010 03:34:31 +0000 Subject: Eliminate %zd tag in printf format strings, replace them with %ld. The %z formatter kept generating type mismatch warnings. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26040 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/mpegplayer/pcm_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins/mpegplayer/pcm_output.c') diff --git a/apps/plugins/mpegplayer/pcm_output.c b/apps/plugins/mpegplayer/pcm_output.c index cd6c45f712..a5d8f86e5b 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 (%zd)\n", sz); + DEBUGF("get_more: invalid size (%ld)\n", (long)sz); } if (offset < -100*CLOCK_RATE/1000) -- cgit v1.2.3