diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-26 16:57:08 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-26 16:57:08 +0000 |
commit | 1dc76af7bff6c31ab7b5da4954fa5573144d9fb1 (patch) | |
tree | 52f942d793686e11aa43fbf7c722ad272d79a9f1 /py/compile.c | |
parent | c5ac2ac590bc2c413880dfd130be245a0c37c35a (diff) | |
download | micropython-1dc76af7bff6c31ab7b5da4954fa5573144d9fb1.tar.gz micropython-1dc76af7bff6c31ab7b5da4954fa5573144d9fb1.zip |
py: Remove name of var arg from macros with var args.
Diffstat (limited to 'py/compile.c')
-rw-r--r-- | py/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.c b/py/compile.c index 9be90a601f..6a87236b9d 100644 --- a/py/compile.c +++ b/py/compile.c @@ -2509,7 +2509,7 @@ STATIC compile_function_t compile_function[] = { NULL, #define nc NULL #define c(f) compile_##f -#define DEF_RULE(rule, comp, kind, arg...) comp, +#define DEF_RULE(rule, comp, kind, ...) comp, #include "grammar.h" #undef nc #undef c |