mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
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.
This commit is contained in:
parent
b7d55c18de
commit
5f5ae768b8
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue