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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a589c98987ccc2745e5c42326986929ddc52268;p=thirdparty%2FPython%2Fcpython.git Remove unused variable, and fix a compilation warning on Windows. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8ea2b97bf8c4..33754d298458 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;