py: Remove more var arg names fro macros with var args.

This commit is contained in:
Damien George 2014-02-26 22:40:35 +00:00
parent d5e81826ec
commit 41eb6086b7
3 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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
/******************************************************************************/

View File

@ -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