From 5b726dbe4dcbaafca2dcf5b6ed89023b287061fa Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 12 Jan 2017 17:46:46 +0100 Subject: [PATCH] fix gcc-arm warning "suggest braces around empty body" --- lib/compress/zstdmt_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress/zstdmt_compress.c b/lib/compress/zstdmt_compress.c index 24f5e5b8b..6f467f6a5 100644 --- a/lib/compress/zstdmt_compress.c +++ b/lib/compress/zstdmt_compress.c @@ -36,7 +36,7 @@ if (g_debugLevel>=MUTEX_WAIT_TIME_DLEVEL) { \ #else -# define DEBUGLOG(l, ...) /* disabled */ +# define DEBUGLOG(l, ...) {} /* disabled */ # define PTHREAD_MUTEX_LOCK(m) pthread_mutex_lock(m) #endif