diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-26 22:40:35 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-26 22:40:35 +0000 |
commit | 41eb6086b757a3ca1b2507a15a9ffcce2ad27d1f (patch) | |
tree | d5dcdddb6b0e823125beda1c4689363336f1c7e4 | |
parent | d5e81826ecc20ae3f862b7a6ae469990fd4c5b38 (diff) | |
download | micropython-41eb6086b757a3ca1b2507a15a9ffcce2ad27d1f.tar.gz micropython-41eb6086b757a3ca1b2507a15a9ffcce2ad27d1f.zip |
py: Remove more var arg names fro macros with var args.
-rw-r--r-- | py/gc.c | 2 | ||||
-rw-r--r-- | py/objfun.c | 2 | ||||
-rw-r--r-- | py/runtime.c | 6 |
3 files changed, 5 insertions, 5 deletions
@@ -12,7 +12,7 @@ #define DEBUG_PRINT (1) #define DEBUG_printf DEBUG_printf #else // don't print debugging info -#define DEBUG_printf(args...) (void)0 +#define DEBUG_printf(...) (void)0 #endif typedef unsigned char byte; diff --git a/py/objfun.c b/py/objfun.c index fa6a734d04..a94978e3a4 100644 --- a/py/objfun.c +++ b/py/objfun.c @@ -17,7 +17,7 @@ #if 0 // print debugging info #define DEBUG_PRINT (1) #else // don't print debugging info -#define DEBUG_printf(args...) (void)0 +#define DEBUG_printf(...) (void)0 #endif /******************************************************************************/ diff --git a/py/runtime.c b/py/runtime.c index b9caf04570..ca08ce3d1f 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -25,10 +25,10 @@ #define DEBUG_PRINT (1) #define WRITE_CODE (1) #define DEBUG_printf DEBUG_printf -#define DEBUG_OP_printf(args...) DEBUG_printf(args) +#define DEBUG_OP_printf(...) DEBUG_printf(__VA_ARGS__) #else // don't print debugging info -#define DEBUG_printf(args...) (void)0 -#define DEBUG_OP_printf(args...) (void)0 +#define DEBUG_printf(...) (void)0 +#define DEBUG_OP_printf(...) (void)0 #endif // locals and globals need to be pointers because they can be the same in outer module scope |