]> granicus.if.org Git - python/commitdiff
Remove unused variable, and fix a compilation warning on Windows
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sat, 15 May 2010 21:45:30 +0000 (21:45 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sat, 15 May 2010 21:45:30 +0000 (21:45 +0000)
Modules/posixmodule.c

index 348efb3d36e71dc39b5b050101599caea91229a7..4e586a161831b7a9b7c14bafc00e9c820aa49475 100644 (file)
@@ -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;