GNOME Bugzilla – Bug 449747
Function parameter mismatch breaks build on Solaris.
Last modified: 2007-06-21 10:48:12 UTC
In ext/gconf the parameters for gst_gconf_get_key_for_sink_profile differ in gconf.c and gconf.h This breaks the build on Solaris. gconf.h: const gchar * gst_gconf_get_key_for_sink_profile (guint profile); gconf.c: const gchar * gst_gconf_get_key_for_sink_profile (GstGConfProfile profile); Attached patch changes gconf.h to use GstGConfProfile type.
Created attachment 90387 [details] [review] Sync parameter type between gconf.h and gconf.c.
Thanks, fixed in CVS: 2007-06-21 Jan Schmidt <thaytan@mad.scientist.com> * ext/gconf/gconf.h: Make the prototype of gst_gconf_get_key_for_sink_profile match the implementation. Patch by: Damien Carbery <damien dot carbery at sun dot com> Fixes: #449747