diff options
author | Rob Clark <rob@ti.com> | 2010-03-10 11:50:47 -0600 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2010-03-11 17:52:03 +0100 |
commit | c3156f06636004d868913dbc9ed5baba826411a8 (patch) | |
tree | 469a15eae7c3ad66c6a9d96ee70ba307ebf4537f | |
parent | 554e0fc5444bb4d7cad466f43a378278b24e250b (diff) | |
download | gstreamer-plugins-bad-c3156f06636004d868913dbc9ed5baba826411a8.tar.gz |
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
-rw-r--r-- | gst/dccp/gstdccp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/dccp/gstdccp.c b/gst/dccp/gstdccp.c index 443931bb5..148aa4ad1 100644 --- a/gst/dccp/gstdccp.c +++ b/gst/dccp/gstdccp.c @@ -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; } |