diff options
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r-- | Modules/pyexpat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index cdbbfe9..db0ae85 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -79,7 +79,7 @@ struct HandlerInfo{ xmlhandler handler; }; -static struct HandlerInfo handler_info[]; +staticforward struct HandlerInfo handler_info[]; static PyObject *conv_atts( XML_Char **atts){ PyObject *attrs_obj=NULL; @@ -147,8 +147,10 @@ static RC my_##NAME##Handler PARAMS {\ return RETURN; \ } +#define NOTHING /**/ + #define VOID_HANDLER( NAME, PARAMS, PARAM_FORMAT ) \ - RC_HANDLER( void, NAME, PARAMS, , PARAM_FORMAT, , ,\ + RC_HANDLER( void, NAME, PARAMS, NOTHING, PARAM_FORMAT, NOTHING, NOTHING,\ (xmlparseobject *)userData ) #define INT_HANDLER( NAME, PARAMS, PARAM_FORMAT )\ |