diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-10 04:55:19 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-10 04:55:19 +0000 |
commit | abc1615d42f3113877dc198a93a3aa3777665ff7 (patch) | |
tree | becaaa5341c38a3ba3410e5a5b196a862a408fe1 | |
parent | ab64613a271849f4de7970f4a881b0fe502d5bd3 (diff) |
Line up better with -t.
-rw-r--r-- | usr.sbin/pstat/pstat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index 85e73471bb4..bf402a429d7 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pstat.c,v 1.11 1997/08/07 20:58:30 millert Exp $ */ +/* $OpenBSD: pstat.c,v 1.12 1997/08/10 04:55:18 millert Exp $ */ /* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 from: static char sccsid[] = "@(#)pstat.c 8.9 (Berkeley) 2/16/94"; #else -static char *rcsid = "$OpenBSD: pstat.c,v 1.11 1997/08/07 20:58:30 millert Exp $"; +static char *rcsid = "$OpenBSD: pstat.c,v 1.12 1997/08/10 04:55:18 millert Exp $"; #endif #endif /* not lint */ @@ -805,9 +805,9 @@ ttyprt(tp) char *name, state[20]; if (usenumflag || (name = devname(tp->t_dev, S_IFCHR)) == NULL) - (void)printf("%2d,%-2d ", major(tp->t_dev), minor(tp->t_dev)); + (void)printf("%2d,%-3d ", major(tp->t_dev), minor(tp->t_dev)); else - (void)printf("%-7s ", name); + (void)printf("%6s ", name); (void)printf("%3d %4d ", tp->t_rawq.c_cc, tp->t_canq.c_cc); (void)printf("%4d %4d %3d %6d ", tp->t_outq.c_cc, tp->t_hiwat, tp->t_lowat, tp->t_column); |