Issue #14180: Fix another typo in kqueue_queue_control()

This commit is contained in:
Victor Stinner 2012-03-13 16:25:35 +01:00
parent d327f9de1f
commit d528b01a71

View file

@ -1868,7 +1868,7 @@ kqueue_queue_control(kqueue_queue_Object *self, PyObject *args)
"timeout must be positive or None");
return NULL;
}
ptimeoutspec = &timeoutspec;
ptimeoutspec = &timeout;
}
else {
PyErr_Format(PyExc_TypeError,