[BusyBox-cvs] busybox/procps kill.c,1.46,1.47
Glenn McGrath
bug1 at busybox.net
Sun Feb 9 22:40:38 UTC 2003
Update of /var/cvs/busybox/procps
In directory winder:/tmp/cvs-serv32565/procps
Modified Files:
kill.c
Log Message:
Fix compiler warnings, patch by Steven Scholz
Index: kill.c
===================================================================
RCS file: /var/cvs/busybox/procps/kill.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- kill.c 25 Nov 2002 22:12:28 -0000 1.46
+++ kill.c 9 Feb 2003 22:40:34 -0000 1.47
@@ -140,7 +140,7 @@
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);
}
}
}
More information about the busybox-cvs
mailing list