Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-07-16 09:39:23 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-07-16 09:39:23 (GMT)
commitd30d9948ab0673d0f9290f734ff20db0ab0fe5a5 (patch)
tree2a005d678a3362b1016a07bdf6d34e3306340b08
parent630baf1c4d62cd6356246ef645c131705b732eb5 (diff)
Fix length modifiers in debug output
-rw-r--r--src/espeak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/espeak.c b/src/espeak.c
index b44bafa..a365b55 100644
--- a/src/espeak.c
+++ b/src/espeak.c
@@ -346,7 +346,7 @@ play(Econtext *self, Espin *spin, gsize size_to_play)
spin->sound_offset += size_to_play;
spin->events_pos += 1;
- GST_DEBUG("out=%p size_to_play=%zd tell=%zd ts=%zd dur=%zd",
+ GST_DEBUG("out=%p size_to_play=%zd tell=%zd ts=%lld dur=%lld",
GST_BUFFER_DATA(out), size_to_play, spin->sound_offset,
GST_BUFFER_TIMESTAMP(out), GST_BUFFER_DURATION(out));