diff options
author | Elie De Brauwer <eliedebrauwer@gmail.com> | 2012-12-16 13:43:36 +0100 |
---|---|---|
committer | Elie De Brauwer <eliedebrauwer@gmail.com> | 2012-12-16 13:43:36 +0100 |
commit | ca4035bdacfd83f815323c9c597f2683fc4aa218 (patch) | |
tree | b1bc7cdeb58ce9a18efc22cce9fbbe1d186a9f98 /toys/lsb/pidof.c | |
parent | a48e5792bb26f95c18055f58d602ac279ebd4002 (diff) | |
download | toybox-ca4035bdacfd83f815323c9c597f2683fc4aa218.tar.gz |
Extend killall with support for -v and -i
Diffstat (limited to 'toys/lsb/pidof.c')
-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 533e922a..7285b6ae 100644 --- a/toys/lsb/pidof.c +++ b/toys/lsb/pidof.c @@ -25,7 +25,7 @@ GLOBALS( char *omit; ) -static int print_pid(pid_t pid) +static int print_pid(pid_t pid, char * name) { char * res; int len; |