aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--procps/ps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/ps.c b/procps/ps.c
index 54e6c40fc..815c11578 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -533,7 +533,7 @@ static void format_process(const procps_status_t *ps)
533 len = out[i].width - len + 1; 533 len = out[i].width - len + 1;
534 if (++i == out_cnt) /* do not pad last field */ 534 if (++i == out_cnt) /* do not pad last field */
535 break; 535 break;
536 p += sprintf(p, "%*s", len, ""); 536 p += sprintf(p, "%*s", len, " "); /* " ", not "", to ensure separation of fields */
537 } 537 }
538 printf("%.*s\n", terminal_width, buffer); 538 printf("%.*s\n", terminal_width, buffer);
539} 539}