typefind: fix prototype of helper_find_suggest

The proto for helper_find_suggest has a different argument than the actual
function in the same file has.  This causes the Sun Studio compiler to fail.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=676624

Conflicts:

	libs/gst/base/gsttypefindhelper.c
This commit is contained in:
Brian Cameron 2012-05-24 11:02:53 +02:00 committed by Wim Taymans
parent 8af3ee2501
commit 461178fb59

View file

@ -43,7 +43,8 @@
/* ********************** typefinding in pull mode ************************ */
static void
helper_find_suggest (gpointer data, guint probability, GstCaps * caps);
helper_find_suggest (gpointer data, GstTypeFindProbability probability,
GstCaps * caps);
typedef struct
{