From 54f7552fbc21a3959636225bd8e80ba95fc6750c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 22 May 2014 09:01:51 -0600 Subject: Change all variadic macros to C99 style --- apps/netutils/thttpd/fdwatch.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/netutils/thttpd') diff --git a/apps/netutils/thttpd/fdwatch.c b/apps/netutils/thttpd/fdwatch.c index 8a578b40c..ba955f420 100644 --- a/apps/netutils/thttpd/fdwatch.c +++ b/apps/netutils/thttpd/fdwatch.c @@ -63,10 +63,10 @@ #ifdef CONFIG_THTTPD_FDWATCH_DEBUG # ifdef CONFIG_CPP_HAVE_VARARGS -# define fwdbg(format, arg...) ndbg(format, ##arg) -# define fwlldbg(format, arg...) nlldbg(format, ##arg) -# define fwvdbg(format, arg...) nvdbg(format, ##arg) -# define fwllvdbg(format, arg...) nllvdbg(format, ##arg) +# define fwdbg(format, ...) ndbg(format, ##__VA_ARGS__) +# define fwlldbg(format, ...) nlldbg(format, ##__VA_ARGS__) +# define fwvdbg(format, ...) nvdbg(format, ##__VA_ARGS__) +# define fwllvdbg(format, ...) nllvdbg(format, ##__VA_ARGS__) # else # define fwdbg ndbg # define fwlldbg nlldbg -- cgit v1.2.3