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;