diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-23 00:00:53 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-23 00:00:53 +0000 |
commit | 00208ce194d4afcde154cf3ed2d9811e2c9d3ebc (patch) | |
tree | 1b83fb5f62281be6fe4a6c9883b998a6ce232cfa /py/compile.c | |
parent | 0d028743aa12ef935b27fdbaf0a5ad3ca62d7628 (diff) |
py: Change macro var args in parser to be C99 compliant.
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 2aa98506d..4bbdf9a95 100644 --- a/py/compile.c +++ b/py/compile.c @@ -23,7 +23,7 @@ typedef enum { PN_none = 0, -#define DEF_RULE(rule, comp, kind, arg...) PN_##rule, +#define DEF_RULE(rule, comp, kind, ...) PN_##rule, #include "grammar.h" #undef DEF_RULE PN_maximum_number_of, |