Remove unused variable, and fix a compilation warning on Windows

This commit is contained in:
Amaury Forgeot d'Arc 2010-05-15 21:45:30 +00:00
parent db99092eae
commit 03acec2256

View file

@ -4083,7 +4083,7 @@ Kill a process with a signal.");
static PyObject * static PyObject *
win32_kill(PyObject *self, PyObject *args) win32_kill(PyObject *self, PyObject *args)
{ {
PyObject *result, handle_obj; PyObject *result;
DWORD pid, sig, err; DWORD pid, sig, err;
HANDLE handle; HANDLE handle;