mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 04:13:35 +00:00
Fixed compiler warning
svn path=/trunk/; revision=1069
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <crtdll/stdio.h>
|
||||
#include <crtdll/string.h>
|
||||
#include <crtdll/float.h>
|
||||
#include <crtdll/alloc.h>
|
||||
// #include <crtdll/locale.h>
|
||||
|
||||
void __ecvround (char *, char *, const char *, int *);
|
||||
|
||||
Reference in New Issue
Block a user