From d528b01a718c46c57977fc1b6a3d805ef65f852a Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 13 Mar 2012 16:25:35 +0100 Subject: Issue #14180: Fix another typo in kqueue_queue_control() --- Modules/selectmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 179dd61..19d9d3b 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, -- cgit v0.12