summaryrefslogtreecommitdiff
path: root/nuttx/drivers/lcd/ug-2864ambag01.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/drivers/lcd/ug-2864ambag01.c')
-rw-r--r--nuttx/drivers/lcd/ug-2864ambag01.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/drivers/lcd/ug-2864ambag01.c b/nuttx/drivers/lcd/ug-2864ambag01.c
index 4879c027f..51706026a 100644
--- a/nuttx/drivers/lcd/ug-2864ambag01.c
+++ b/nuttx/drivers/lcd/ug-2864ambag01.c
@@ -263,8 +263,8 @@
/* Debug ******************************************************************************/
#ifdef CONFIG_DEBUG_LCD
-# define lcddbg(format, arg...) dbg(format, ##arg)
-# define lcdvdbg(format, arg...) vdbg(format, ##arg)
+# define lcddbg(format, ...) dbg(format, ##__VA_ARGS__)
+# define lcdvdbg(format, ...) vdbg(format, ##__VA_ARGS__)
#else
# define lcddbg(x...)
# define lcdvdbg(x...)