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 /py/objfun.c | |
parent | d5e81826ecc20ae3f862b7a6ae469990fd4c5b38 (diff) |
py: Remove more var arg names fro macros with var args.
Diffstat (limited to 'py/objfun.c')
-rw-r--r-- | py/objfun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objfun.c b/py/objfun.c index fa6a734d0..a94978e3a 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 /******************************************************************************/ |