From 14398458029b91a92b7d812a093b3340ade54c48 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 31 Oct 2019 13:47:01 +0100 Subject: [PATCH] Remove extra new lines after GTK log messages This seems unnecessary as the default log handler already outputs a new line at the end of the message anyhow and at least some messages (e.g. debug ones in GdkPixbuf) also contain an extra new line in them, so adding another one here resulted in having at least one and sometimes two extra blank lines. --- tests/test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test.cpp b/tests/test.cpp index 3fb11e9c34..0b4e31d0f0 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -514,8 +514,6 @@ wxTestGLogHandler(const gchar* domain, wxGetCurrentTestName().c_str()); g_log_default_handler(domain, level, message, data); - - fprintf(stderr, "\n"); } #endif // __WXGTK__