From 29a31db629c1ee7b6d1a00ef7ec0e4fd69234259 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 14 Feb 2012 09:57:54 -0600 Subject: [PATCH] Remove extra '\n' from red_printf() calls red_printf() takes care of adding a newline to all messages; remove the extra newline from all messages and macros that were doubling them up. Signed-off-by: Dan McGee --- spice_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spice_common.h b/spice_common.h index d13a94f..434b179 100644 --- a/spice_common.h +++ b/spice_common.h @@ -55,7 +55,7 @@ } \ } while (0) -#define WARN(format, ...) red_printf("warning: "format"\n", ##__VA_ARGS__ ); +#define WARN(format, ...) red_printf("warning: "format, ##__VA_ARGS__ ); #define WARN_ONCE red_printf_once #define red_printf_some(every, format, ...) do { \