From 30c6d0cc35aa76893d9c55a9525ddfd3a6754bca Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Thu, 24 May 2012 11:02:53 +0200 Subject: [PATCH] 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 --- libs/gst/base/gsttypefindhelper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/gst/base/gsttypefindhelper.c b/libs/gst/base/gsttypefindhelper.c index d47761fa55..f7202e257f 100644 --- a/libs/gst/base/gsttypefindhelper.c +++ b/libs/gst/base/gsttypefindhelper.c @@ -43,7 +43,8 @@ /* ********************** typefinding in pull mode ************************ */ static void -helper_find_suggest (gpointer data, guint probability, const GstCaps * caps); +helper_find_suggest (gpointer data, GstTypeFindProbability probability, + const GstCaps * caps); typedef struct {