Print usage newline on stderr, not stdout

w32-compat
Christopher Wellons 2017-09-09 22:09:20 -04:00
parent 96d78c583f
commit 9c1fa33356
1 changed files with 1 additions and 1 deletions

View File

@ -1372,7 +1372,7 @@ multiputs(const char **s, FILE *f)
{
while (*s) {
fputs(*s++, f);
putchar('\n');
fputc('\n', f);
}
}