From: Rachid Koucha <47061324+Rachid-Koucha@users.noreply.github.com> Date: Mon, 13 May 2019 12:57:02 +0000 (+0200) Subject: Error prone semicolon X-Git-Tag: lxc-3.2.0~52^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a719a64e59948f72104f14eab8eeb121bd8bb83;p=thirdparty%2Flxc.git Error prone semicolon Suppressed error prone semicolon in SYSTRACE() macro. Signed-off-by: Rachid Koucha --- diff --git a/src/lxc/log.h b/src/lxc/log.h index 4ced2d750..5afe4e093 100644 --- a/src/lxc/log.h +++ b/src/lxc/log.h @@ -418,7 +418,7 @@ ATTR_UNUSED static inline void LXC_##LEVEL(struct lxc_log_locinfo* locinfo, \ #if HAVE_M_FORMAT #define SYSTRACE(format, ...) \ - TRACE("%m - " format, ##__VA_ARGS__); + TRACE("%m - " format, ##__VA_ARGS__) #else #define SYSTRACE(format, ...) \ do { \