Update RedirectablePrint.cpp

raytac-diy
Thomas Göttgens 2022-10-18 11:18:12 +02:00 zatwierdzone przez GitHub
rodzic 46aee8274f
commit 01298a7b01
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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;
}
}