aboutsummaryrefslogtreecommitdiff
path: root/procps/top.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-09-08 17:42:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-09-08 17:42:00 +0000
commit4d7605af86644861faf0f3a95b7bf36865bf2a90 (patch)
tree6e8f10a9354a127f8ab22026d5b7e7f008a1150b /procps/top.c
parent4c1d88daff14331b64ef1019faf3f6f1ecaff817 (diff)
downloadbusybox-4d7605af86644861faf0f3a95b7bf36865bf2a90.tar.gz
top: small fix for command line wrapping
Diffstat (limited to 'procps/top.c')
-rw-r--r--procps/top.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/top.c b/procps/top.c
index 529db5f7b..ac3b7e5a2 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -474,8 +474,8 @@ static NOINLINE void display_process_list(int count, int scr_width)
, SHOW_STAT(pcpu)
#endif
);
- if (col < scr_width)
- read_cmdline(line_buf + col, scr_width - col, s->pid, s->comm);
+ if (col + 1 < scr_width)
+ read_cmdline(line_buf + col, scr_width - col - 1, s->pid, s->comm);
fputs(line_buf, stdout);
/* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
jif.busy - prev_jif.busy, jif.total - prev_jif.total); */