diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-05-15 20:35:12 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-05-15 20:35:12 (GMT) |
commit | 0a589c98987ccc2745e5c42326986929ddc52268 (patch) | |
tree | 4d82ebf3ca1da22a0690f18f2a6e5538ea7a6120 /Modules/posixmodule.c | |
parent | 558cd64de00613b2ed301c3a3d5cc7c791b0e370 (diff) | |
download | cpython-0a589c98987ccc2745e5c42326986929ddc52268.zip cpython-0a589c98987ccc2745e5c42326986929ddc52268.tar.gz cpython-0a589c98987ccc2745e5c42326986929ddc52268.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 8ea2b97..33754d2 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4062,7 +4062,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; |