summaryrefslogtreecommitdiff
path: root/py/compile.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-23 00:00:53 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-23 00:00:53 +0000
commit00208ce194d4afcde154cf3ed2d9811e2c9d3ebc (patch)
tree1b83fb5f62281be6fe4a6c9883b998a6ce232cfa /py/compile.c
parent0d028743aa12ef935b27fdbaf0a5ad3ca62d7628 (diff)
py: Change macro var args in parser to be C99 compliant.
Diffstat (limited to 'py/compile.c')
-rw-r--r--py/compile.c2
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,