mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2026-08-08 20:28:57 +00:00
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:
parent
4b6d1d5347
commit
29a31db629
@ -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 { \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user