asfdemux: fix warning in macosx snow leopard
authorJosep Torra <n770galaxy@gmail.com>
Sun, 11 Oct 2009 14:06:25 +0000 (16:06 +0200)
committerJosep Torra <n770galaxy@gmail.com>
Sun, 11 Oct 2009 14:06:25 +0000 (16:06 +0200)
gst/asfdemux/gstasfdemux.c

index c47009d..39a9f2e 100644 (file)
@@ -620,9 +620,10 @@ gst_asf_demux_handle_seek_event (GstASFDemux * demux, GstEvent * event)
             &dest_format, &offset) && dest_format == GST_FORMAT_BYTES) {
       packet = (offset - demux->data_offset) / demux->packet_size;
       GST_LOG_OBJECT (demux, "convert %" GST_TIME_FORMAT
-          " to bytes query result: %lld, data_ofset: %llu, packet_size: %u,"
-          " resulting packet: %u\n", GST_TIME_ARGS (seek_time), offset,
-          demux->data_offset, demux->packet_size, packet);
+          " to bytes query result: %" G_GINT64_FORMAT ", data_ofset: %"
+          G_GINT64_FORMAT ", packet_size: %u," " resulting packet: %u\n",
+          GST_TIME_ARGS (seek_time), offset, demux->data_offset,
+          demux->packet_size, packet);
     } else {
       /* Hackety hack, this sucks. We just seek to an earlier position
        *  and let the sinks throw away the stuff before the segment start */