Got rid of extra space between args and (command).

This commit is contained in:
David Greenman 1994-08-18 14:30:53 +00:00
parent 15a08e5fb2
commit d9346a803b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2110

View file

@ -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);