From 0b790d74f2620cd0b7f0b528eb9684b28725b119 Mon Sep 17 00:00:00 2001 From: Karolis Stasaitis Date: Tue, 19 Nov 2024 23:38:17 +0100 Subject: [PATCH] Add missing parens for Com_DWPrintf Ran into this when trying to make a release build from ade82fda --- inc/common/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/common/common.h b/inc/common/common.h index 0cf98a78c..d30d7e2dd 100644 --- a/inc/common/common.h +++ b/inc/common/common.h @@ -144,7 +144,7 @@ void Sys_Printf(const char *fmt, ...) q_printf(1, 2); #define Com_DDPrintf(...) ((void)0) #define Com_DDDPrintf(...) ((void)0) #define Com_DDDDPrintf(...) ((void)0) -#define Com_DWPrintf(...) ((void)0 +#define Com_DWPrintf(...) ((void)0) #endif #if USE_TESTS