diff options
author | Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br> | 2009-01-13 19:09:19 +0000 |
---|---|---|
committer | Michael Smith <msmith@xiph.org> | 2009-01-13 19:09:19 +0000 |
commit | 5f5ae768b88671df1e5d3e55e5df41d832f7c008 (patch) | |
tree | a0ceab76a95bb2dbda83b5001befd66c6fa55207 | |
parent | b7d55c18de78690d17f35f63919ab9c09a0b72c8 (diff) | |
download | gstreamer-plugins-good-5f5ae768b88671df1e5d3e55e5df41d832f7c008.tar.gz |
gst/qtdemux/qtdemux.c: Fix format string for guint64.
Original commit message from CVS:
Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>
* gst/qtdemux/qtdemux.c:
Fix format string for guint64.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2009-01-13 Michael Smith <msmith@songbirdnest.com> + Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br> + * gst/qtdemux/qtdemux.c: + Fix format string for guint64. + +2009-01-13 Michael Smith <msmith@songbirdnest.com> + * sys/osxaudio/Makefile.am: osxaudio plugin now requires AudioUnit framework, so link against that. Clean up tabs v spaces while I'm there. diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 548541da3..ba11e7af2 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -1167,7 +1167,8 @@ gst_qtdemux_loop_state_header (GstQTDemux * qtdemux) if (length != GST_BUFFER_SIZE (moov)) { GST_ELEMENT_ERROR (qtdemux, STREAM, DECODE, (_("This file is incomplete and cannot be played.")), - ("We got less than expected (received %u, wanted %u, offset %u)", + ("We got less than expected (received %u, wanted %u, offset %" + G_GUINT64_FORMAT ")", GST_BUFFER_SIZE (moov), (guint) length, cur_offset)); ret = GST_FLOW_ERROR; goto beach; |