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

index 775f0e7..b1fa70c 100644 (file)
@@ -1165,7 +1165,8 @@ normal_seek (GstMPEGParse * mpeg_parse, GstPad * pad, GstEvent * event)
       goto done;
     }
     GST_INFO_OBJECT (mpeg_parse,
-        "Finished conversion of cur, BYTES cur : %lld", start_position);
+        "Finished conversion of cur, BYTES cur : %" G_GINT64_FORMAT,
+        start_position);
   } else {
     start_position = -1;
   }
@@ -1185,7 +1186,8 @@ normal_seek (GstMPEGParse * mpeg_parse, GstPad * pad, GstEvent * event)
       goto done;
     }
     GST_INFO_OBJECT (mpeg_parse,
-        "Finished conversion of stop, BYTES stop : %lld", end_position);
+        "Finished conversion of stop, BYTES stop : %" G_GINT64_FORMAT,
+        end_position);
   } else {
     end_position = -1;
   }