summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--gst/qtdemux/qtdemux.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f6463a2a..c336b1f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 548541da..ba11e7af 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;