From: Yann Collet Date: Thu, 12 Jan 2017 16:46:46 +0000 (+0100) Subject: fix gcc-arm warning "suggest braces around empty body" X-Git-Tag: v1.1.3^2~19^2~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b726dbe4dcbaafca2dcf5b6ed89023b287061fa;p=thirdparty%2Fzstd.git fix gcc-arm warning "suggest braces around empty body" --- 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