aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/kill.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/kill.c')
-rw-r--r--toys/posix/kill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/kill.c b/toys/posix/kill.c
index f869e368..dc4c370f 100644
--- a/toys/posix/kill.c
+++ b/toys/posix/kill.c
@@ -130,7 +130,7 @@ void kill_main(void)
if (!readfile(toybuf, toybuf, sizeof(toybuf)) || !*toybuf) continue;
// Check with omit list.
- for (count = 0; count < ocount; count++)
+ for (count = 0; count < ocount; count++)
if (procpid == olist[count]) break;
if (count != ocount) continue;