Commit 28adf52b authored by Fred Drake's avatar Fred Drake

xmlparse_ExternalEntityParserCreate(): Add required cast to return to

        avoid compiler warnings.
parent 46e13027
......@@ -594,7 +594,7 @@ xmlparse_ExternalEntityParserCreate(xmlparseobject *self, PyObject *args)
}
}
return new_parser;
return (PyObject *)new_parser;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment