From d9d3272dc6f2f7e4f047e95c1ab1aeb9278d5b4e Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Fri, 17 Mar 2000 21:46:41 +0000 Subject: [PATCH] Fixed compiler warning svn path=/trunk/; revision=1069 --- reactos/lib/crtdll/stdio/fprintf.c | 2 +- reactos/lib/crtdll/stdlib/fcvtbuf.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/lib/crtdll/stdio/fprintf.c b/reactos/lib/crtdll/stdio/fprintf.c index 7a03b6bec14..9ac7b6b0082 100644 --- a/reactos/lib/crtdll/stdio/fprintf.c +++ b/reactos/lib/crtdll/stdio/fprintf.c @@ -41,7 +41,7 @@ fwprintf(register FILE *iop, const wchar_t *fmt, ...) if (iop->_flag & _IONBF) { iop->_flag &= ~_IONBF; - iop->_ptr = iop->_base = localbuf; + iop->_ptr = iop->_base = (char *)localbuf; iop->_bufsiz = BUFSIZ; len = vfwprintf(iop,fmt,a); fflush(iop); diff --git a/reactos/lib/crtdll/stdlib/fcvtbuf.c b/reactos/lib/crtdll/stdlib/fcvtbuf.c index c900fcad440..d1edb24db60 100644 --- a/reactos/lib/crtdll/stdlib/fcvtbuf.c +++ b/reactos/lib/crtdll/stdlib/fcvtbuf.c @@ -3,6 +3,7 @@ #include #include #include +#include // #include void __ecvround (char *, char *, const char *, int *);