Got rid of extra space between args and (command).
This commit is contained in:
parent
15a08e5fb2
commit
d9346a803b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user