py: Change macro var args in parser to be C99 compliant.

This commit is contained in:
Damien George
2014-01-23 00:00:53 +00:00
parent 0d028743aa
commit 00208ce194
2 changed files with 5 additions and 5 deletions

View File

@@ -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,