From f5c2d4db5be575ce5cb87f5727c981901639f74d Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sat, 2 Feb 2019 15:32:28 +0100 Subject: [PATCH] Cygwin: kill(1): revert casts required for 32 bit to avoid spurious warnings Signed-off-by: Corinna Vinschen --- winsup/utils/kill.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/winsup/utils/kill.cc b/winsup/utils/kill.cc index 19c19d089..e34923ac0 100644 --- a/winsup/utils/kill.cc +++ b/winsup/utils/kill.cc @@ -169,14 +169,15 @@ forcekill (pid_t pid, int sig, int wait) if (!h) { if (!wait || GetLastError () != ERROR_INVALID_PARAMETER) - fprintf (stderr, "%s: couldn't open pid %u\n", prog_name, dwpid); + fprintf (stderr, "%s: couldn't open pid %u\n", + prog_name, (unsigned int) dwpid); return; } if (!wait || WaitForSingleObject (h, 200) != WAIT_OBJECT_0) if (sig && !TerminateProcess (h, sig << 8) && WaitForSingleObject (h, 200) != WAIT_OBJECT_0) fprintf (stderr, "%s: couldn't kill pid %u, %u\n", - prog_name, dwpid, GetLastError ()); + prog_name, (unsigned int) dwpid, (unsigned int) GetLastError ()); CloseHandle (h); }