From: Victor Stinner Date: Tue, 13 Mar 2012 15:25:35 +0000 (+0100) Subject: Issue #14180: Fix another typo in kqueue_queue_control() X-Git-Tag: v3.3.0a2~227 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d528b01a718c46c57977fc1b6a3d805ef65f852a;p=thirdparty%2FPython%2Fcpython.git Issue #14180: Fix another typo in kqueue_queue_control() --- diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 179dd61856ca..19d9d3b9f64b 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -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,