summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/pcm_output.c
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2010-05-15 03:34:31 +0000
committerJeffrey Goode <jeffg7@gmail.com>2010-05-15 03:34:31 +0000
commit6ef04a7f0e2540a78e3e197ad842b85d8119c15d (patch)
tree5c55dd71ed09f2369fc939a4a6d98fa2a95b233b /apps/plugins/mpegplayer/pcm_output.c
parentff548fad8689ab767a62d2c7d9b2f2c4efece1e8 (diff)
downloadrockbox-6ef04a7f0e2540a78e3e197ad842b85d8119c15d.tar.gz
rockbox-6ef04a7f0e2540a78e3e197ad842b85d8119c15d.zip
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
Diffstat (limited to 'apps/plugins/mpegplayer/pcm_output.c')
-rw-r--r--apps/plugins/mpegplayer/pcm_output.c2
1 files changed, 1 insertions, 1 deletions
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)
99 /* Just show a warning about this - will never happen 99 /* Just show a warning about this - will never happen
100 * without a bug in the audio thread code or a clobbered 100 * without a bug in the audio thread code or a clobbered
101 * buffer */ 101 * buffer */
102 DEBUGF("get_more: invalid size (%zd)\n", sz); 102 DEBUGF("get_more: invalid size (%ld)\n", (long)sz);
103 } 103 }
104 104
105 if (offset < -100*CLOCK_RATE/1000) 105 if (offset < -100*CLOCK_RATE/1000)