Change all variadic macros to C99 style

This commit is contained in:
Gregory Nutt
2014-05-22 09:01:51 -06:00
parent 9aba7598b0
commit 2abe0dd6dd
43 changed files with 139 additions and 138 deletions
+2 -2
View File
@@ -209,9 +209,9 @@
#ifdef CONFIG_CPP_HAVE_VARARGS
# ifdef CONFIG_DEBUG
# ifdef CONFIG_ARCH_LOWPUTC
# define dbgprintf(format, arg...) lowsyslog(format, ##arg)
# define dbgprintf(format, ...) lowsyslog(format, ##__VA_ARGS__)
# else
# define dbgprintf(format, arg...) syslog(format, ##arg)
# define dbgprintf(format, ...) syslog(format, ##__VA_ARGS__)
# endif
# else
# define dbgprintf(x...)