After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 449747 - Function parameter mismatch breaks build on Solaris.
Function parameter mismatch breaks build on Solaris.
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
0.10.6
Other Solaris
: Normal normal
: 0.10.7
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-06-21 10:36 UTC by Damien Carbery
Modified: 2007-06-21 10:48 UTC
See Also:
GNOME target: ---
GNOME version: 2.19/2.20


Attachments
Sync parameter type between gconf.h and gconf.c. (632 bytes, patch)
2007-06-21 10:37 UTC, Damien Carbery
none Details | Review

Description Damien Carbery 2007-06-21 10:36:09 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.
Comment 1 Damien Carbery 2007-06-21 10:37:12 UTC
Created attachment 90387 [details] [review]
Sync parameter type between gconf.h and gconf.c.
Comment 2 Jan Schmidt 2007-06-21 10:48:12 UTC
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