diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/kill.c | 2 | ||||
-rw-r--r-- | procps/pidof.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/procps/kill.c b/procps/kill.c index 8b8a992..7147b57 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -114,7 +114,7 @@ extern int kill_main(int argc, char **argv) pid_t myPid=getpid(); /* Looks like they want to do a killall. Do that */ while (--argc >= 0) { - pid_t* pidList; + long* pidList; pidList = find_pid_by_name( *argv); if (!pidList || *pidList<=0) { diff --git a/procps/pidof.c b/procps/pidof.c index 5a40288..9415827 100644 --- a/procps/pidof.c +++ b/procps/pidof.c @@ -58,7 +58,7 @@ extern int pidof_main(int argc, char **argv) /* Looks like everything is set to go. */ while(optind < argc) { - pid_t* pidList; + long* pidList; pidList = find_pid_by_name( argv[optind]); if (!pidList || *pidList<=0) { |