Remove unused variable, and fix a compilation warning on Windows.

This commit is contained in:
Amaury Forgeot d'Arc 2010-05-15 20:35:12 +00:00
parent 558cd64de0
commit 0a589c9898
1 changed files with 1 additions and 1 deletions

View File

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