mirror of https://github.com/python/cpython.git
xmlparse_ExternalEntityParserCreate(): Add required cast to return to
avoid compiler warnings.
This commit is contained in:
parent
46e13027a8
commit
28adf52b06
|
@ -594,7 +594,7 @@ xmlparse_ExternalEntityParserCreate(xmlparseobject *self, PyObject *args)
|
|||
}
|
||||
}
|
||||
|
||||
return new_parser;
|
||||
return (PyObject *)new_parser;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue