From: Keith Bostic Date: Tue, 9 Apr 1991 02:35:26 +0000 (-0800) Subject: null indirection X-Git-Tag: BSD-4_3_Net_2-Snapshot-Development~220 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/2e184f4c9fa993ae13a1568ad71be45a342cc3ec null indirection SCCS-vsn: bin/ps/keyword.c 5.5 --- diff --git a/usr/src/bin/ps/keyword.c b/usr/src/bin/ps/keyword.c index 4d2765876a..81ba4aa4f4 100644 --- a/usr/src/bin/ps/keyword.c +++ b/usr/src/bin/ps/keyword.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)keyword.c 5.4 (Berkeley) %G%"; +static char sccsid[] = "@(#)keyword.c 5.5 (Berkeley) %G%"; #endif /* not lint */ #include @@ -248,9 +248,9 @@ showkey() if (termwidth && (i += len + 1) > termwidth) { i = len; sep = "\n"; - } + } else + sep = " "; (void) printf("%s%s", sep, p); - sep = " "; } (void) printf("\n"); }