summaryrefslogtreecommitdiffstats
path: root/winsup/utils
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/ChangeLog4
-rw-r--r--winsup/utils/kill.cc5
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 651918065..06df99f3e 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,5 +1,9 @@
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.
2003-08-31 Christopher Faylor <cgf@redhat.com>
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);
}