From 03acec22563f09588a76851664184eb29b67e90f Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Sat, 15 May 2010 21:45:30 +0000 Subject: [PATCH] Remove unused variable, and fix a compilation warning on Windows --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 348efb3d36e..4e586a16183 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;