summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/z16f2800100zcog
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 /nuttx/configs/z16f2800100zcog
parent34cc8f19dfc278d546a9dd8c00eebabe0bc3094d (diff)
Change all variadic macros to C99 style
Diffstat (limited to 'nuttx/configs/z16f2800100zcog')
-rw-r--r--nuttx/configs/z16f2800100zcog/tools/zneo-zdsii-5_0_1-variadic-func-fix.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/configs/z16f2800100zcog/tools/zneo-zdsii-5_0_1-variadic-func-fix.patch b/nuttx/configs/z16f2800100zcog/tools/zneo-zdsii-5_0_1-variadic-func-fix.patch
index 895cb47edb..d1eb29ba6f 100644
--- a/nuttx/configs/z16f2800100zcog/tools/zneo-zdsii-5_0_1-variadic-func-fix.patch
+++ b/nuttx/configs/z16f2800100zcog/tools/zneo-zdsii-5_0_1-variadic-func-fix.patch
@@ -130,7 +130,7 @@ index c78362f..207f9b9 100644
+#if 0
#ifdef CONFIG_CPP_HAVE_VARARGS
- # define nsh_output(v, fmt...) (v)->output(v, ##fmt)
+ # define nsh_output(v, ...) (v)->output(v, ##__VA_ARGS__)
#else
# define nsh_output vtbl->output
#endif