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

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-02-10 01:40:34 +0300
committerGlenn L McGrath <bug1@ihug.co.nz>2003-02-10 01:40:34 +0300
commit883d4842d26e0ad7667c04579c089ec3ba7960d8 (patch)
tree058d47cfedf18269b0a6986a7536e9b812c74677 /procps
parent826b48b624e3c02b432b8ffbb7809657ddb3a012 (diff)
Fix compiler warnings, patch by Steven Scholz
Diffstat (limited to 'procps')
-rw-r--r--procps/kill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 9b31f28d6..c7a3c7f72 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -140,7 +140,7 @@ do_it_now:
if (kill(*pl, sig) != 0) {
errors++;
if (quiet==0)
- perror_msg( "Could not kill pid '%d'", *pl);
+ perror_msg( "Could not kill pid '%ld'", *pl);
}
}
}