diff options
-rw-r--r-- | Modules/_testcapimodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 30a786cd34..3f3ed66488 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -1952,7 +1952,7 @@ unicode_asutf8andsize(PyObject *self, PyObject *args) return NULL; } - buffer = PyUnicode_AsUTF8AndSize(unicode, &utf8_len); + buffer = PyUnicode_AsUTF8AndSize(unicode, &utf8_len); if (buffer == NULL) { return NULL; } @@ -6406,7 +6406,7 @@ static PyType_Spec HeapCTypeWithDict_spec = { static struct PyMemberDef heapctypewithnegativedict_members[] = { {"dictobj", T_OBJECT, offsetof(HeapCTypeWithDictObject, dict)}, - {"__dictoffset__", T_PYSSIZET, -sizeof(void*), READONLY}, + {"__dictoffset__", T_PYSSIZET, -(Py_ssize_t)sizeof(void*), READONLY}, {NULL} /* Sentinel */ }; |