decklink: Remove \n from debug output

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1721>
This commit is contained in:
Sebastian Dröge 2020-10-25 13:33:21 +02:00
parent 60b7bd23a8
commit f71493a57c

View file

@ -1855,14 +1855,14 @@ gst_decklink_configure_profile (Device * device,
manager->Release ();
if (res == S_OK) {
GST_DEBUG ("Successfully set profile.\n");
GST_DEBUG ("Successfully set profile");
return PROFILE_SET_SUCCESS;
} else {
GST_ERROR ("Failed to set profile.\n");
GST_ERROR ("Failed to set profile");
return PROFILE_SET_FAILURE;
}
} else {
GST_DEBUG ("Device has only one profile.\n");
GST_DEBUG ("Device has only one profile");
return PROFILE_SET_UNSUPPORTED;
}
}