commit 10b57e8a3dbdff764c72ac5ae4c4190a703a8f13 parent c914a2fecadabb560ff5692154f31d8bfa20959f Author: sin <sin@2f30.org> Date: Tue, 21 Apr 2015 17:48:47 +0100 Actually print <space> to stream in putword() too Diffstat:
M | libutil/putword.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libutil/putword.c b/libutil/putword.c @@ -9,7 +9,7 @@ putword(FILE *fp, const char *s) static int first = 1; if (!first) - putchar(' '); + fputc(' ', fp); fputs(s, fp); first = 0;