summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2010-05-15 21:45:30 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2010-05-15 21:45:30 (GMT)
commit03acec22563f09588a76851664184eb29b67e90f (patch)
tree271db38fe0ca5d8ad8cf391b588e04ac3f19a9f1 /Modules/posixmodule.c
parentdb99092eae9d8855c3d2da871d1ead2cdccf0e1c (diff)
downloadcpython-03acec22563f09588a76851664184eb29b67e90f.zip
cpython-03acec22563f09588a76851664184eb29b67e90f.tar.gz
cpython-03acec22563f09588a76851664184eb29b67e90f.tar.bz2
Remove unused variable, and fix a compilation warning on Windows
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 348efb3..4e586a1 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;