fix compile error with trace macro

Note that this one isn't a problem with normal trace macros, but causes problems with
some replacement trace macros that I use, which expect the format string to be
appendable (ie "foo "fmt in the macro)

https://bugzilla.gnome.org/show_bug.cgi?id=612454
This commit is contained in:
Rob Clark 2010-03-10 11:50:47 -06:00 committed by Edward Hervey
parent 554e0fc544
commit c3156f0663

View file

@ -156,7 +156,7 @@ gst_dccp_read_buffer (GstElement * this, int socket, GstBuffer ** buf)
#endif
if (bytes_read != readsize) {
GST_DEBUG_OBJECT (this, ("Error while reading data"));
GST_DEBUG_OBJECT (this, "Error while reading data");
return GST_FLOW_ERROR;
}