summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Clark <rob@ti.com>2010-03-10 11:50:47 -0600
committerEdward Hervey <bilboed@bilboed.com>2010-03-11 17:52:03 +0100
commitc3156f06636004d868913dbc9ed5baba826411a8 (patch)
tree469a15eae7c3ad66c6a9d96ee70ba307ebf4537f
parent554e0fc5444bb4d7cad466f43a378278b24e250b (diff)
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.c2
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;
}