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
This commit is contained in:
Jimmy Ohn 2015-07-01 21:46:46 +09:00 committed by Tim-Philipp Müller
parent 2176f31174
commit 4f4605f481

View file

@ -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)
{