Actually print <space> to stream in putword() too

This commit is contained in:
sin 2015-04-21 17:48:47 +01:00
parent c914a2feca
commit 10b57e8a3d
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ putword(FILE *fp, const char *s)
static int first = 1;
if (!first)
putchar(' ');
fputc(' ', fp);
fputs(s, fp);
first = 0;