xmlparse_ExternalEntityParserCreate(): Add required cast to return to

avoid compiler warnings.
This commit is contained in:
Fred Drake 2000-09-24 22:07:59 +00:00
parent 46e13027a8
commit 28adf52b06

View file

@ -594,7 +594,7 @@ xmlparse_ExternalEntityParserCreate(xmlparseobject *self, PyObject *args)
}
}
return new_parser;
return (PyObject *)new_parser;
}