gst/asfdemux/gstasfdemux.c: Printf format fixes.

Original commit message from CVS:
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_seek_event),
(gst_asf_demux_pull_indices):
Printf format fixes.
This commit is contained in:
Tim-Philipp Müller 2007-04-17 10:21:50 +00:00
parent b2ba2f9e0a
commit 9ff45f3d88
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2007-04-17 Tim-Philipp Müller <tim at centricular dot net>
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_seek_event),
(gst_asf_demux_pull_indices):
Printf format fixes.
2007-04-16 Tim-Philipp Müller <tim at centricular dot net>
* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),

View file

@ -456,7 +456,7 @@ gst_asf_demux_handle_seek_event (GstASFDemux * demux, GstEvent * event)
packet = demux->num_packets;
}
GST_DEBUG_OBJECT (demux, "seeking to packet %" G_GINT64_FORMAT, packet);
GST_DEBUG_OBJECT (demux, "seeking to packet %u", packet);
GST_OBJECT_LOCK (demux);
demux->segment = segment;
@ -773,7 +773,7 @@ gst_asf_demux_pull_indices (GstASFDemux * demux)
break;
GST_LOG_OBJECT (demux, "index object at offset 0x%" G_GINT64_MODIFIER "X"
", size %u", offset, obj.size);
", size %u", offset, (guint) obj.size);
offset += obj.size; /* increase before _process_object changes it */