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
1 changed files with 1 additions and 1 deletions

View 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;