From 4f4605f4819c64ce557e25ef5987f463a49ee695 Mon Sep 17 00:00:00 2001 From: Jimmy Ohn Date: Wed, 1 Jul 2015 21:46:46 +0900 Subject: [PATCH] avidemux: fix return type of index_entry_offset_search() It's a compare function and may return a negative value, so should for correctness and consistency return a signed integer. https://bugzilla.gnome.org/show_bug.cgi?id=751780 --- gst/avi/gstavidemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index 7438a27a94..f1797e144c 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -666,7 +666,7 @@ gst_avi_demux_seek_streams (GstAviDemux * avi, guint64 offset, gboolean before) } #endif -static guint +static gint gst_avi_demux_index_entry_offset_search (GstAviIndexEntry * entry, guint64 * offset) {