summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@wyplay.com>2012-03-13 15:25:35 (GMT)
committerVictor Stinner <vstinner@wyplay.com>2012-03-13 15:25:35 (GMT)
commitd528b01a718c46c57977fc1b6a3d805ef65f852a (patch)
tree62330092a9aa81a4a46c54539af0df9f50ddfe06 /Modules
parentd327f9de1f9affd2ce7296c5cdc3984ded1ee747 (diff)
downloadcpython-d528b01a718c46c57977fc1b6a3d805ef65f852a.zip
cpython-d528b01a718c46c57977fc1b6a3d805ef65f852a.tar.gz
cpython-d528b01a718c46c57977fc1b6a3d805ef65f852a.tar.bz2
Issue #14180: Fix another typo in kqueue_queue_control()
Diffstat (limited to 'Modules')
-rw-r--r--Modules/selectmodule.c2
1 files changed, 1 insertions, 1 deletions
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,