Skip to content
Prev Previous commit
Next Next commit
keep necessary cast
  • Loading branch information
picnixz committed Jan 20, 2025
commit 504eabfa42900193722232d04f219515ab8a1667
2 changes: 1 addition & 1 deletion Modules/_ctypes/_ctypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -5763,7 +5763,7 @@ comerror_dealloc(PyObject *self)
}

static PyType_Slot comerror_slots[] = {
{Py_tp_doc, PyDoc_STR(comerror_doc)},
{Py_tp_doc, (void *)PyDoc_STR(comerror_doc)},
{Py_tp_init, comerror_init},
{Py_tp_traverse, comerror_traverse},
{Py_tp_dealloc, comerror_dealloc},
Expand Down