top: just respond to the increased command name length

The command name for running tasks is displayed by top
in a variable length field, so the increase from 16 to
64 bytes was not a problem. However, there's one place
where top is sensitive to length - insp_view_choice().

So, this patch just bumps a buffer used to display it.

Reference(s):
. increased 'comm' length
commit 2cfdbbe897

Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
Jim Warner 2018-05-19 00:00:00 -05:00 committed by Craig Small
parent 607edc2064
commit c699f2e26d

View File

@ -3368,7 +3368,7 @@ signify_that:
adj_geometry();
for (;;) {
char pid[6], cmd[16];
char pid[6], cmd[64];
if (curcol < 0) curcol = 0;
if (curlin >= Insp_nl) curlin = Insp_nl -1;