From 2e184f4c9fa993ae13a1568ad71be45a342cc3ec Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Mon, 8 Apr 1991 18:35:26 -0800 Subject: [PATCH] null indirection SCCS-vsn: bin/ps/keyword.c 5.5 --- usr/src/bin/ps/keyword.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); } -- 2.20.1