Commit d528b01a authored by Victor Stinner's avatar Victor Stinner

Issue #14180: Fix another typo in kqueue_queue_control()

parent d327f9de
...@@ -1868,7 +1868,7 @@ kqueue_queue_control(kqueue_queue_Object *self, PyObject *args) ...@@ -1868,7 +1868,7 @@ kqueue_queue_control(kqueue_queue_Object *self, PyObject *args)
"timeout must be positive or None"); "timeout must be positive or None");
return NULL; return NULL;
} }
ptimeoutspec = &timeoutspec; ptimeoutspec = &timeout;
} }
else { else {
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment