Skip to content

Commit

Permalink
Fix a compile warning in selectmodule.c. (GH-16617)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyangyu authored Oct 7, 2019
1 parent 038503e commit 303475e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/selectmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2362,7 +2362,7 @@ static PyMethodDef kqueue_queue_methods[] = {

static PyType_Slot kqueue_queue_Type_slots[] = {
{Py_tp_dealloc, kqueue_queue_dealloc},
{Py_tp_doc, select_kqueue__doc__},
{Py_tp_doc, (void*)select_kqueue__doc__},
{Py_tp_getset, kqueue_queue_getsetlist},
{Py_tp_methods, kqueue_queue_methods},
{Py_tp_new, select_kqueue},
Expand Down

0 comments on commit 303475e

Please sign in to comment.