From c25bf9777af9d9a132a7a9e2887637ca850ffe81 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Sat, 12 Jun 2010 13:04:43 +0200 Subject: [PATCH] oggdemux: Fix format string compiler warning on OS X --- ext/ogg/gstoggstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/ogg/gstoggstream.c b/ext/ogg/gstoggstream.c index 786c74f93c..8fda96c41b 100644 --- a/ext/ogg/gstoggstream.c +++ b/ext/ogg/gstoggstream.c @@ -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;