mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
oggdemux: Fix format string compiler warning on OS X
This commit is contained in:
parent
d91e3d8d78
commit
c25bf9777a
1 changed files with 1 additions and 1 deletions
|
@ -1176,7 +1176,7 @@ gst_ogg_map_search_index (GstOggStream * pad, gboolean before,
|
||||||
if (best == NULL)
|
if (best == NULL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
GST_INFO ("found at index %u", (best - pad->index));
|
GST_INFO ("found at index %li", (best - pad->index));
|
||||||
|
|
||||||
if (offset)
|
if (offset)
|
||||||
*offset = best->offset;
|
*offset = best->offset;
|
||||||
|
|
Loading…
Reference in a new issue