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 <dpmcgee@gmail.com>
This commit is contained in:
Dan McGee 2012-02-14 09:57:54 -06:00 committed by Alon Levy
parent 4b6d1d5347
commit 29a31db629

View File

@ -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 { \