From 0a589c98987ccc2745e5c42326986929ddc52268 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Sat, 15 May 2010 20:35:12 +0000 Subject: 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 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; -- cgit v0.12