aboutsummaryrefslogtreecommitdiff
path: root/libbb/procps.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/procps.c')
-rw-r--r--libbb/procps.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/procps.c b/libbb/procps.c
index 15a1cf74b..9d73fc4b7 100644
--- a/libbb/procps.c
+++ b/libbb/procps.c
@@ -36,13 +36,13 @@ procps_status_t * procps_scan(int save_user_arg0)
36 36
37 struct dirent *entry; 37 struct dirent *entry;
38 char *name; 38 char *name;
39 int n;
40 char status[32];
41 char *status_tail;
42 char buf[PROCPS_BUFSIZE]; 39 char buf[PROCPS_BUFSIZE];
40 char status[sizeof("/proc//cmdline") + sizeof(int)*3];
41 char *status_tail;
43 procps_status_t curstatus; 42 procps_status_t curstatus;
44 int pid;
45 long tasknice; 43 long tasknice;
44 int pid;
45 int n;
46 struct stat sb; 46 struct stat sb;
47 47
48 if (!dir) { 48 if (!dir) {