mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
GST_DEBUG/INFO doesn't need a \n at the end.
Original commit message from CVS: GST_DEBUG/INFO doesn't need a \n at the end.
This commit is contained in:
parent
5af24ec4e5
commit
22fa9810d6
1 changed files with 2 additions and 2 deletions
|
@ -2131,11 +2131,11 @@ gst_element_set_locked_state (GstElement *element, gboolean locked_state)
|
|||
return;
|
||||
|
||||
if (locked_state) {
|
||||
GST_DEBUG (GST_CAT_STATES, "locking state of element %s\n",
|
||||
GST_DEBUG (GST_CAT_STATES, "locking state of element %s",
|
||||
GST_ELEMENT_NAME (element));
|
||||
GST_FLAG_SET (element, GST_ELEMENT_LOCKED_STATE);
|
||||
} else {
|
||||
GST_DEBUG (GST_CAT_STATES, "unlocking state of element %s\n",
|
||||
GST_DEBUG (GST_CAT_STATES, "unlocking state of element %s",
|
||||
GST_ELEMENT_NAME (element));
|
||||
GST_FLAG_UNSET (element, GST_ELEMENT_LOCKED_STATE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue