From 6cd2bafdcf9ae2fda8a377bcf5d254a09138605b Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Tue, 14 Jun 2016 18:17:57 -0400 Subject: [PATCH 3/7] Avoid "empty body" compiler warnings * src/conf_post.h (DebPrint): Add empty braces if not EMACSDEBUG. --- src/conf_post.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf_post.h b/src/conf_post.h index 4459caf..25db0c6 100644 --- a/src/conf_post.h +++ b/src/conf_post.h @@ -211,7 +211,7 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */ extern void _DebPrint (const char *fmt, ...); # define DebPrint(stuff) _DebPrint stuff # else -# define DebPrint(stuff) +# define DebPrint(stuff) {} # endif #endif -- 2.8.3