From 01298a7b016f7fb18d297e1a3f050a4e776d0900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Tue, 18 Oct 2022 11:18:12 +0200 Subject: [PATCH] Update RedirectablePrint.cpp --- src/RedirectablePrint.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RedirectablePrint.cpp b/src/RedirectablePrint.cpp index 4d28007d9..de9b95027 100644 --- a/src/RedirectablePrint.cpp +++ b/src/RedirectablePrint.cpp @@ -70,7 +70,7 @@ size_t RedirectablePrint::logDebug(const char *format, ...) va_list arg; va_start(arg, format); - // Cope with 0 len0 format strings, but look for new line terminator + // Cope with 0 len format strings, but look for new line terminator bool hasNewline = *format && format[strlen(format) - 1] == '\n'; // If we are the first message on a report, include the header @@ -110,4 +110,4 @@ size_t RedirectablePrint::logDebug(const char *format, ...) } return r; -} \ No newline at end of file +}