From 5f5ae768b88671df1e5d3e55e5df41d832f7c008 Mon Sep 17 00:00:00 2001 From: Thiago Sousa Santos Date: Tue, 13 Jan 2009 19:09:19 +0000 Subject: gst/qtdemux/qtdemux.c: Fix format string for guint64. Original commit message from CVS: Patch by: Thiago Sousa Santos * gst/qtdemux/qtdemux.c: Fix format string for guint64. --- gst/qtdemux/qtdemux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gst') 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; -- cgit