summaryrefslogtreecommitdiff
path: root/apps/system/vi
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-22 09:01:51 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-22 09:01:51 -0600
commit54f7552fbc21a3959636225bd8e80ba95fc6750c (patch)
tree9cc321d2ef1c24efd225f33840e2349bb6e4abd2 /apps/system/vi
parent34cc8f19dfc278d546a9dd8c00eebabe0bc3094d (diff)
downloadnuttx-54f7552fbc21a3959636225bd8e80ba95fc6750c.tar.gz
nuttx-54f7552fbc21a3959636225bd8e80ba95fc6750c.tar.bz2
nuttx-54f7552fbc21a3959636225bd8e80ba95fc6750c.zip
Change all variadic macros to C99 style
Diffstat (limited to 'apps/system/vi')
-rw-r--r--apps/system/vi/vi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/system/vi/vi.c b/apps/system/vi/vi.c
index 4fbc643a8..35b2a8610 100644
--- a/apps/system/vi/vi.c
+++ b/apps/system/vi/vi.c
@@ -149,8 +149,8 @@
#ifdef CONFIG_CPP_HAVE_VARARGS
# if CONFIG_SYSTEM_VI_DEBUGLEVEL > 0
-# define vidbg(format, arg...) \
- syslog(EXTRA_FMT format EXTRA_ARG, ##arg)
+# define vidbg(format, ...) \
+ syslog(EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__)
# define vvidbg(format, ap) \
vsyslog(format, ap)
# else
@@ -159,8 +159,8 @@
# endif
# if CONFIG_SYSTEM_VI_DEBUGLEVEL > 1
-# define vivdbg(format, arg...) \
- syslog(EXTRA_FMT format EXTRA_ARG, ##arg)
+# define vivdbg(format, ...) \
+ syslog(EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__)
# else
# define vivdbg(x...)
# endif