From: Amaury Forgeot d'Arc Date: Sat, 15 May 2010 21:45:30 +0000 (+0000) Subject: Remove unused variable, and fix a compilation warning on Windows X-Git-Tag: v2.7rc1~147 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03acec22563f09588a76851664184eb29b67e90f;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 348efb3d36e7..4e586a161831 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4083,7 +4083,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;