Skip to content

Commit 504eabf

Browse files
committed
keep necessary cast
1 parent a1f7e5a commit 504eabf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_ctypes/_ctypes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5763,7 +5763,7 @@ comerror_dealloc(PyObject *self)
57635763
}
57645764

57655765
static PyType_Slot comerror_slots[] = {
5766-
{Py_tp_doc, PyDoc_STR(comerror_doc)},
5766+
{Py_tp_doc, (void *)PyDoc_STR(comerror_doc)},
57675767
{Py_tp_init, comerror_init},
57685768
{Py_tp_traverse, comerror_traverse},
57695769
{Py_tp_dealloc, comerror_dealloc},

0 commit comments

Comments
 (0)