From 9a719a64e59948f72104f14eab8eeb121bd8bb83 Mon Sep 17 00:00:00 2001 From: Rachid Koucha <47061324+Rachid-Koucha@users.noreply.github.com> Date: Mon, 13 May 2019 14:57:02 +0200 Subject: [PATCH] Error prone semicolon Suppressed error prone semicolon in SYSTRACE() macro. Signed-off-by: Rachid Koucha --- src/lxc/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { \ -- 2.47.2