diff options
author | Rob Landley <rob@landley.net> | 2013-09-11 12:09:53 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-09-11 12:09:53 -0500 |
commit | cd0b70e739055e5e8a5d9d6f823bdd3fa97ee509 (patch) | |
tree | aee5f419a7ba2471bb43c404121bb43df8abdce7 /toys/lsb | |
parent | 9b9a1ef58763c9a6fc0cd23f125353716824b8bc (diff) | |
download | toybox-cd0b70e739055e5e8a5d9d6f823bdd3fa97ee509.tar.gz |
Ah, that's why commit 1057 was skipped last pull: it was unfinished. Oops. (Fix it.)0.4.6
Diffstat (limited to 'toys/lsb')
-rw-r--r-- | toys/lsb/pidof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/lsb/pidof.c b/toys/lsb/pidof.c index 70582a51..7ef54034 100644 --- a/toys/lsb/pidof.c +++ b/toys/lsb/pidof.c @@ -49,6 +49,6 @@ static int print_pid(pid_t pid, char * name) void pidof_main(void) { toys.exitval = 1; - name_to_pid(toys.optargs, print_pid); + names_to_pid(toys.optargs, print_pid); if (!toys.exitval) xputc('\n'); } |