aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/procps.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/procps.c b/libbb/procps.c
index 10f2ff597..b483a326c 100644
--- a/libbb/procps.c
+++ b/libbb/procps.c
@@ -86,15 +86,15 @@ procps_status_t * procps_scan(int save_user_arg0)
86 "%*s %*s %*s %*s " /* pgrp, session, tty, tpgid */ 86 "%*s %*s %*s %*s " /* pgrp, session, tty, tpgid */
87 "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */ 87 "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
88#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE 88#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
89 "%lu %lu " 89 "%lu %lu " /* utime, stime */
90#else 90#else
91 "%*s %*s " 91 "%*s %*s " /* utime, stime */
92#endif 92#endif
93 "%*s %*s %*s " /* cutime, cstime, priority */ 93 "%*s %*s %*s " /* cutime, cstime, priority */
94 "%ld " 94 "%ld " /* nice */
95 "%*s %*s %*s " /* timeout, it_real_value, start_time */ 95 "%*s %*s %*s " /* timeout, it_real_value, start_time */
96 "%*s " /* vsize */ 96 "%*s " /* vsize */
97 "%ld", 97 "%ld", /* rss */
98 curstatus.state, &curstatus.ppid, 98 curstatus.state, &curstatus.ppid,
99#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE 99#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
100 &curstatus.utime, &curstatus.stime, 100 &curstatus.utime, &curstatus.stime,