From 54f7552fbc21a3959636225bd8e80ba95fc6750c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 22 May 2014 09:01:51 -0600 Subject: Change all variadic macros to C99 style --- apps/examples/elf/elf_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/examples/elf/elf_main.c') diff --git a/apps/examples/elf/elf_main.c b/apps/examples/elf/elf_main.c index e1bdb4aa5..88c6e804f 100644 --- a/apps/examples/elf/elf_main.c +++ b/apps/examples/elf/elf_main.c @@ -106,11 +106,11 @@ #ifdef CONFIG_CPP_HAVE_VARARGS # ifdef CONFIG_DEBUG -# define message(format, arg...) dbg(format, ##arg) -# define err(format, arg...) dbg(format, ##arg) +# define message(format, ...) dbg(format, ##__VA_ARGS__) +# define err(format, ...) dbg(format, ##__VA_ARGS__) # else -# define message(format, arg...) printf(format, ##arg) -# define err(format, arg...) fprintf(stderr, format, ##arg) +# define message(format, ...) printf(format, ##__VA_ARGS__) +# define err(format, ...) fprintf(stderr, format, ##__VA_ARGS__) # endif #else # ifdef CONFIG_DEBUG -- cgit v1.2.3