summaryrefslogtreecommitdiff
path: root/sys/decklink
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-10-25 13:33:21 +0200
committerSebastian Dröge <sebastian@centricular.com>2020-10-30 16:23:31 +0200
commitf71493a57c09e7aaa84e6b0175c343ed642bab5f (patch)
tree24a0f36077493537bc29154f598a51b1cf258c62 /sys/decklink
parent60b7bd23a84489451a303d2c0b7f19ac71fb5540 (diff)
downloadgstreamer-plugins-bad-f71493a57c09e7aaa84e6b0175c343ed642bab5f.tar.gz
decklink: Remove \n from debug output
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1721>
Diffstat (limited to 'sys/decklink')
-rw-r--r--sys/decklink/gstdecklink.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/decklink/gstdecklink.cpp b/sys/decklink/gstdecklink.cpp
index b36096539..8d8b4cd91 100644
--- a/sys/decklink/gstdecklink.cpp
+++ b/sys/decklink/gstdecklink.cpp
@@ -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;
}
}