From: Amaury Forgeot d'Arc Date: Sat, 15 May 2010 20:35:12 +0000 (+0000) Subject: Remove unused variable, and fix a compilation warning on Windows. X-Git-Tag: v3.2a1~800 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a589c98987ccc2745e5c42326986929ddc52268;p=python Remove unused variable, and fix a compilation warning on Windows. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8ea2b97bf8..33754d2984 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;