commit | 03acec22563f09588a76851664184eb29b67e90f | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Sat May 15 21:45:30 2010 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Sat May 15 21:45:30 2010 +0000 |
tree | 271db38fe0ca5d8ad8cf391b588e04ac3f19a9f1 | |
parent | db99092eae9d8855c3d2da871d1ead2cdccf0e1c [diff] |
Remove unused variable, and fix a compilation warning on Windows
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 @@ static PyObject * win32_kill(PyObject *self, PyObject *args) { - PyObject *result, handle_obj; + PyObject *result; DWORD pid, sig, err; HANDLE handle;