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
+1 -1
View File
@@ -56,7 +56,7 @@
/* This needs to match the logic in include/debug.h */
#ifdef CONFIG_CPP_HAVE_VARARGS
# define message(format, arg...) syslog(format, ##arg)
# define message(format, ...) syslog(format, ##__VA_ARGS__)
#else
# define message syslog
#endif