py: Remove name of var arg from macros with var args.

This commit is contained in:
Damien George
2014-02-26 16:57:08 +00:00
parent c5ac2ac590
commit 1dc76af7bf
5 changed files with 4 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
#if 0 // print debugging info
#define DEBUG_printf DEBUG_printf
#else // don't print debugging info
#define DEBUG_printf(args...) (void)0
#define DEBUG_printf(...) (void)0
#endif
// A qstr is an index into the qstr pool.