mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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:
parent
554e0fc544
commit
c3156f0663
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue