[gnome-terminal] client: legacy: Print errors to stderr



commit 9eaf72c720fcf3f58ec6fb1e872d03f400fbdf36
Author: Christian Persch <chpe src gnome org>
Date:   Sun Nov 25 23:58:31 2018 +0100

    client: legacy: Print errors to stderr
    
    https://gitlab.gnome.org/GNOME/gnome-terminal/issues/42

 src/terminal-options.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/terminal-options.h b/src/terminal-options.h
index 862ea2da..77df9993 100644
--- a/src/terminal-options.h
+++ b/src/terminal-options.h
@@ -178,9 +178,9 @@ void terminal_fprintf (FILE* fp,
 #define terminal_print_detail(...) terminal_print_level(DETAIL, __VA_ARGS__)
 #define terminal_print_debug(...) terminal_print_level(DEBUG, __VA_ARGS__)
 
-#define terminal_printerr_detail(...) terminal_print_level(DETAIL, __VA_ARGS__)
-#define terminal_printerr(...) terminal_print_level(NORMAL, __VA_ARGS__)
-#define terminal_printerr_debug(...) terminal_print_level(DEBUG, __VA_ARGS__)
+#define terminal_printerr_detail(...) terminal_printerr_level(DETAIL, __VA_ARGS__)
+#define terminal_printerr(...) terminal_printerr_level(NORMAL, __VA_ARGS__)
+#define terminal_printerr_debug(...) terminal_printerr_level(DEBUG, __VA_ARGS__)
 
 #if GLIB_CHECK_VERSION (2, 50, 0)
 GLogWriterOutput terminal_log_writer (GLogLevelFlags log_level,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]