commit | 0a589c98987ccc2745e5c42326986929ddc52268 | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Sat May 15 20:35:12 2010 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Sat May 15 20:35:12 2010 +0000 |
tree | 4d82ebf3ca1da22a0690f18f2a6e5538ea7a6120 | |
parent | 558cd64de00613b2ed301c3a3d5cc7c791b0e370 [diff] [blame] |
Remove unused variable, and fix a compilation warning on Windows.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8ea2b97..33754d2 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c
@@ -4062,7 +4062,7 @@ static PyObject * win32_kill(PyObject *self, PyObject *args) { - PyObject *result, handle_obj; + PyObject *result; DWORD pid, sig, err; HANDLE handle;