From 93d0b1247fa3bd07004d10dbbc3fe23ab5fafa92 Mon Sep 17 00:00:00 2001 From: Matthew Gregan Date: Wed, 7 Dec 2022 20:50:23 +1300 Subject: [PATCH] cubeb-test: Add a newline after each log message. --- tools/cubeb-test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/cubeb-test.cpp b/tools/cubeb-test.cpp index ab17123..a18faed 100644 --- a/tools/cubeb-test.cpp +++ b/tools/cubeb-test.cpp @@ -66,6 +66,7 @@ void print_log(const char* msg, ...) { va_list args; va_start(args, msg); vprintf(msg, args); + printf("\n"); va_end(args); }