diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-05-15 21:45:30 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-05-15 21:45:30 (GMT) |
commit | 03acec22563f09588a76851664184eb29b67e90f (patch) | |
tree | 271db38fe0ca5d8ad8cf391b588e04ac3f19a9f1 /Modules/posixmodule.c | |
parent | db99092eae9d8855c3d2da871d1ead2cdccf0e1c (diff) | |
download | cpython-03acec22563f09588a76851664184eb29b67e90f.zip cpython-03acec22563f09588a76851664184eb29b67e90f.tar.gz cpython-03acec22563f09588a76851664184eb29b67e90f.tar.bz2 |
Remove unused variable, and fix a compilation warning on Windows
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 348efb3..4e586a1 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4083,7 +4083,7 @@ Kill a process with a signal."); static PyObject * win32_kill(PyObject *self, PyObject *args) { - PyObject *result, handle_obj; + PyObject *result; DWORD pid, sig, err; HANDLE handle; |