From 0392b8638e7e75b7d5979143f812a9bf08ef501b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 26 Jun 2001 23:11:44 +0000 Subject: Minor formatting change --- procps/ps.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'procps/ps.c') diff --git a/procps/ps.c b/procps/ps.c index c59fc0f9c..7afb0091f 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -132,7 +132,7 @@ extern int ps_main(int argc, char **argv) terminal_width = win.ws_col - 1; #endif - printf("%5s %-8s %5s %s\n", "PID", "Uid", "State", "Command"); + printf(" PID Uid Stat Command\n"); while ((entry = readdir(dir)) != NULL) { if (!isdigit(*entry->d_name)) continue; @@ -151,7 +151,7 @@ extern int ps_main(int argc, char **argv) if (file == NULL) continue; i = 0; - len = printf("%5d %-8s %c ", p.pid, uidName, p.state); + len = printf("%5d %-8s %c ", p.pid, uidName, p.state); while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) { i++; if (c == '\0') @@ -223,7 +223,7 @@ extern int ps_main(int argc, char **argv) #endif /* Print up a ps listing */ - printf("%5s %-8s %5s %s\n", "PID", "Uid", "State", "Command"); + printf(" PID Uid Stat Command\n"); for (i=1; i 1) { for( j=0; j<(sizeof(info.command_line)-1) && j < (terminal_width-len); j++) { -- cgit v1.2.3