diff options
author | Matthew Gregan <[email protected]> | 2022-12-07 20:50:23 +1300 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2022-12-08 09:24:26 +1300 |
commit | 93d0b1247fa3bd07004d10dbbc3fe23ab5fafa92 (patch) | |
tree | 4d983ccad59dc57b1377cda7b8bfa4e631f55e2d /tools | |
parent | 8d7365a9d5e057af79f9a64f113e9d7cd9e63709 (diff) | |
download | cubeb-93d0b1247fa3bd07004d10dbbc3fe23ab5fafa92.tar.gz cubeb-93d0b1247fa3bd07004d10dbbc3fe23ab5fafa92.zip |
cubeb-test: Add a newline after each log message.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/cubeb-test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); } |