Commit 69c3910d by Michel Normand Committed by Daniel Lezcano

SYSERROR not to add end of line character

I assume this is a typo error. Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com> Signed-off-by: 's avatarMichel Normand <normand@fr.ibm.com>
parent 51cab631
......@@ -275,7 +275,7 @@ extern struct lxc_log_category lxc_log_category_lxc;
#define SYSERROR(format, ...) do { \
ERROR("%s - " format "\n", strerror(errno), ##__VA_ARGS__); \
ERROR("%s - " format, strerror(errno), ##__VA_ARGS__); \
} while (0)
extern int lxc_log_init(const char *file, const char *priority,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment