From 21c6079b7a4b17f7110094a94f7fc3c850c295ae Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Wed, 17 Apr 2013 04:27:00 +0000 Subject: [PATCH] Fix compile for windows. --- conout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conout.c b/conout.c index 0595f33..00b8158 100644 --- a/conout.c +++ b/conout.c @@ -168,7 +168,7 @@ static int win_fputs(FILE *h, const char *str) { state = -1; } } else { - fs_file_putc(h, *str); + fs_file_write(str, 1, 1, stdout); length ++; } str++; -- 2.39.2