aboutsummaryrefslogtreecommitdiff
path: root/procps/pidof.c
diff options
context:
space:
mode:
Diffstat (limited to 'procps/pidof.c')
-rw-r--r--procps/pidof.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/procps/pidof.c b/procps/pidof.c
index 2519473e8..780504433 100644
--- a/procps/pidof.c
+++ b/procps/pidof.c
@@ -22,7 +22,6 @@ int pidof_main(int argc UNUSED_PARAM, char **argv)
22 unsigned first = 1; 22 unsigned first = 1;
23 unsigned opt; 23 unsigned opt;
24#if ENABLE_FEATURE_PIDOF_OMIT 24#if ENABLE_FEATURE_PIDOF_OMIT
25 char ppid_str[sizeof(int)*3 + 1];
26 llist_t *omits = NULL; /* list of pids to omit */ 25 llist_t *omits = NULL; /* list of pids to omit */
27 opt_complementary = "o::"; 26 opt_complementary = "o::";
28#endif 27#endif
@@ -39,8 +38,7 @@ int pidof_main(int argc UNUSED_PARAM, char **argv)
39 while (omits_p) { 38 while (omits_p) {
40 /* are we asked to exclude the parent's process ID? */ 39 /* are we asked to exclude the parent's process ID? */
41 if (strcmp(omits_p->data, "%PPID") == 0) { 40 if (strcmp(omits_p->data, "%PPID") == 0) {
42 sprintf(ppid_str, "%u", (unsigned)getppid()); 41 omits_p->data = utoa((unsigned)getppid());
43 omits_p->data = ppid_str;
44 } 42 }
45 omits_p = omits_p->link; 43 omits_p = omits_p->link;
46 } 44 }