From e4493ada68fd050145da702e67b503bd7cf3a59f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 8 Nov 2005 12:08:11 +0000 Subject: [PATCH] gst/volume/gstvolume.c: Fix compilation on Solaris with Forte. (#320923) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original commit message from CVS: Reviewed by: Tim-Philipp Müller * gst/volume/gstvolume.c: (volume_set_caps): Fix compilation on Solaris with Forte. (#320923) --- ChangeLog | 7 +++++++ gst/volume/gstvolume.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 82b5931875..23a255689f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-11-08 Brian Cameron + + Reviewed by: Tim-Philipp Müller + + * gst/volume/gstvolume.c: (volume_set_caps): + Fix compilation on Solaris with Forte. (#320923) + 2005-11-08 Wim Taymans * gst-libs/gst/audio/gstbaseaudiosink.c: diff --git a/gst/volume/gstvolume.c b/gst/volume/gstvolume.c index c137fca75e..bde880d385 100644 --- a/gst/volume/gstvolume.c +++ b/gst/volume/gstvolume.c @@ -393,7 +393,7 @@ volume_set_caps (GstBaseTransform * base, GstCaps * incaps, GstCaps * outcaps) if (!this->process) { GST_ELEMENT_ERROR (this, CORE, NEGOTIATION, - ("Invalid incoming caps: %" GST_PTR_FORMAT, incaps), NULL); + ("Invalid incoming caps: %" GST_PTR_FORMAT, incaps), (NULL)); return FALSE; } return TRUE;