* kill.cc (forcekill): Silence some compiler warnings.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2003-08-31 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* kill.cc (forcekill): Silence some compiler warnings.
|
||||
|
||||
2003-08-31 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* Makefile.in: Oops. Put the '...' in the right place.
|
||||
|
@ -133,12 +133,13 @@ forcekill (int pid, int sig, int wait)
|
||||
HANDLE h = OpenProcess (PROCESS_TERMINATE, FALSE, (DWORD) dwpid);
|
||||
if (!h)
|
||||
{
|
||||
fprintf (stderr, "couldn't open pid %u\n", dwpid);
|
||||
fprintf (stderr, "couldn't open pid %u\n", (unsigned) dwpid);
|
||||
return;
|
||||
}
|
||||
if (!wait || WaitForSingleObject (h, 200) != WAIT_OBJECT_0)
|
||||
if (!TerminateProcess (h, sig << 8))
|
||||
fprintf (stderr, "couldn't kill pid %u, %d\n", dwpid, GetLastError ());
|
||||
fprintf (stderr, "couldn't kill pid %u, %u\n", (unsigned) dwpid,
|
||||
(unsigned) GetLastError ());
|
||||
CloseHandle (h);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user