oggdemux: Fix format string compiler warning on OS X
authorPhilippe Normand <phil@base-art.net>
Sat, 12 Jun 2010 11:04:43 +0000 (13:04 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 12 Jun 2010 11:04:43 +0000 (13:04 +0200)
ext/ogg/gstoggstream.c

index 786c74f..8fda96c 100644 (file)
@@ -1176,7 +1176,7 @@ gst_ogg_map_search_index (GstOggStream * pad, gboolean before,
   if (best == NULL)
     return FALSE;
 
-  GST_INFO ("found at index %u", (best - pad->index));
+  GST_INFO ("found at index %li", (best - pad->index));
 
   if (offset)
     *offset = best->offset;