From f71493a57c09e7aaa84e6b0175c343ed642bab5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 25 Oct 2020 13:33:21 +0200 Subject: [PATCH] decklink: Remove \n from debug output Part-of: --- sys/decklink/gstdecklink.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/decklink/gstdecklink.cpp b/sys/decklink/gstdecklink.cpp index b36096539a..8d8b4cd91e 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; } }