From cd0b70e739055e5e8a5d9d6f823bdd3fa97ee509 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 11 Sep 2013 12:09:53 -0500 Subject: Ah, that's why commit 1057 was skipped last pull: it was unfinished. Oops. (Fix it.) --- toys/lsb/pidof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys') 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'); } -- cgit v1.2.3