Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-09-01 06:40:16 +0400
committerChristopher Faylor <me@cgf.cx>2003-09-01 06:40:16 +0400
commitef58cd2f446b2f6fe06d874b749a425aa735dc1a (patch)
tree0720b898815b453ea6eb21a2b655c0ecde2c6b37 /winsup/utils/kill.cc
parentf6f88b66d2a85b26f0b86713dca150035ce0dd4f (diff)
* kill.cc (forcekill): Silence some compiler warnings.
Diffstat (limited to 'winsup/utils/kill.cc')
-rw-r--r--winsup/utils/kill.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/utils/kill.cc b/winsup/utils/kill.cc
index 3c75c5078..c5b61c616 100644
--- a/winsup/utils/kill.cc
+++ b/winsup/utils/kill.cc
@@ -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);
}