From d9346a803b8f5f4e1223f7fa23fa027f2dc1cb66 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Thu, 18 Aug 1994 14:30:53 +0000 Subject: [PATCH] Got rid of extra space between args and (command). --- bin/ps/fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ps/fmt.c b/bin/ps/fmt.c index 3b6a1ec1c8b4..a48c887d527f 100644 --- a/bin/ps/fmt.c +++ b/bin/ps/fmt.c @@ -108,7 +108,7 @@ fmt_argv(argv, cmd, maxlen) if (ap == NULL) sprintf(cp, "(%.*s)", maxlen, cmd); else if (strncmp(cmdpart(argv[0]), cmd, maxlen) != 0) - sprintf(cp, "%s (%.*s)", ap, maxlen, cmd); + sprintf(cp, "%s(%.*s)", ap, maxlen, cmd); else (void) strcpy(cp, ap); return (cp);