From e148a2912af57faf4e7d727f5f43dfd846e09da7 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 6 Nov 2023 11:51:33 +0100 Subject: [PATCH] decklink disp.: needless NL in errmsg Splitting the error to ``` [DeckLink display] Unable to switch audio output for channels 3 or above although card shall support it: Not implemented (0x80000001) Check if it is ok. Continuing anyway. ``` actually doesn't help readibility. --- src/video_display/decklink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_display/decklink.cpp b/src/video_display/decklink.cpp index 0f4856a49..e64cdef13 100644 --- a/src/video_display/decklink.cpp +++ b/src/video_display/decklink.cpp @@ -1311,7 +1311,7 @@ set_audio_props(state_decklink *s, } else { MSG(WARNING, "Unable to switch audio output for channels 3 or " - "above although \ncard shall support it: %s\nCheck if " + "above although the card shall support it: %s\nCheck if " "it is ok. Continuing anyway.\n", bmd_hresult_to_string(result).c_str()); }