SYSERROR not to add end of line character

I assume this is a typo error.

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: Michel Normand <normand@fr.ibm.com>
This commit is contained in:
Michel Normand 2009-05-14 16:27:28 +02:00 committed by Daniel Lezcano
parent 51cab6315f
commit 69c3910d15

View File

@ -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,