summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/compal_e99
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/compal_e99
parent34cc8f19dfc278d546a9dd8c00eebabe0bc3094d (diff)
Change all variadic macros to C99 style
Diffstat (limited to 'nuttx/configs/compal_e99')
-rw-r--r--nuttx/configs/compal_e99/src/ssd1783.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/configs/compal_e99/src/ssd1783.c b/nuttx/configs/compal_e99/src/ssd1783.c
index ac7f8b13cb..64ed6a2e7a 100644
--- a/nuttx/configs/compal_e99/src/ssd1783.c
+++ b/nuttx/configs/compal_e99/src/ssd1783.c
@@ -65,8 +65,9 @@
# define LCD_YRES 67
/* Debug ******************************************************************************/
+
#ifdef CONFIG_DEBUG_LCD
-# define lcddbg(format, arg...) vdbg(format, ##arg)
+# define lcddbg(format, ...) vdbg(format, ##__VA_ARGS__)
#else
# define lcddbg(x...)
#endif