Actually print <space> to stream in putword() too
This commit is contained in:
parent
c914a2feca
commit
10b57e8a3d
@ -9,7 +9,7 @@ putword(FILE *fp, const char *s)
|
|||||||
static int first = 1;
|
static int first = 1;
|
||||||
|
|
||||||
if (!first)
|
if (!first)
|
||||||
putchar(' ');
|
fputc(' ', fp);
|
||||||
|
|
||||||
fputs(s, fp);
|
fputs(s, fp);
|
||||||
first = 0;
|
first = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user