summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcusi@freebsd.org>2006-04-28 10:31:45 +0000
committerRodrigo Moya <rodrigo@src.gnome.org>2006-04-28 10:31:45 +0000
commit222965ee18cec6d323e0ff29c165a0644b645fec (patch)
tree0b98e71b715c4a90b68f1d9b0332a0d25e8866b4
parentd4ef213384439187ad9f59a0daa1536d1c5f686d (diff)
downloadgnome-control-center-222965ee18cec6d323e0ff29c165a0644b645fec.tar.gz
Fixes #338849
2006-04-28 Joe Marcus Clarke <marcusi@freebsd.org> Fixes #338849 * actions/cme-volume-gstreamer.c: added missing header to avoid 64bit crash on missing prototype.
-rw-r--r--gnome-settings-daemon/ChangeLog7
-rw-r--r--gnome-settings-daemon/actions/acme-volume-gstreamer.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/gnome-settings-daemon/ChangeLog b/gnome-settings-daemon/ChangeLog
index 1181d0763..cb878c873 100644
--- a/gnome-settings-daemon/ChangeLog
+++ b/gnome-settings-daemon/ChangeLog
@@ -1,3 +1,10 @@
+2006-04-28 Joe Marcus Clarke <marcusi@freebsd.org>
+
+ Fixes #338849
+
+ * actions/cme-volume-gstreamer.c: added missing header to avoid
+ 64bit crash on missing prototype.
+
2006-04-17 Ray Strode <rstrode@redhat.com>
* gnome-settings-mouse.c (configure_button_layout): fix
diff --git a/gnome-settings-daemon/actions/acme-volume-gstreamer.c b/gnome-settings-daemon/actions/acme-volume-gstreamer.c
index b52b762c2..cad9aeb68 100644
--- a/gnome-settings-daemon/actions/acme-volume-gstreamer.c
+++ b/gnome-settings-daemon/actions/acme-volume-gstreamer.c
@@ -29,6 +29,7 @@
#ifdef HAVE_GST10
#include <gst/gst.h>
+#include <gst/audio/mixerutils.h>
#include <gst/interfaces/mixer.h>
#include <gst/interfaces/propertyprobe.h>
#else