summaryrefslogtreecommitdiffstatshomepage
path: root/py/qstr.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-26 16:57:08 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-26 16:57:08 +0000
commit1dc76af7bff6c31ab7b5da4954fa5573144d9fb1 (patch)
tree52f942d793686e11aa43fbf7c722ad272d79a9f1 /py/qstr.c
parentc5ac2ac590bc2c413880dfd130be245a0c37c35a (diff)
downloadmicropython-1dc76af7bff6c31ab7b5da4954fa5573144d9fb1.tar.gz
micropython-1dc76af7bff6c31ab7b5da4954fa5573144d9fb1.zip
py: Remove name of var arg from macros with var args.
Diffstat (limited to 'py/qstr.c')
-rw-r--r--py/qstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/qstr.c b/py/qstr.c
index a34479cbfd..aebc2921cf 100644
--- a/py/qstr.c
+++ b/py/qstr.c
@@ -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.