Some corrections for v scanf methods. But they seem to be broken here. I have to rethink this issue completly.



git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@291 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/stdio/vsnwprintf.c b/mingw-w64-crt/stdio/vsnwprintf.c
index f61e9e5..2cdfc08 100644
--- a/mingw-w64-crt/stdio/vsnwprintf.c
+++ b/mingw-w64-crt/stdio/vsnwprintf.c
@@ -8,4 +8,6 @@
 #include <wchar.h>

 

 int  vsnwprintf(wchar_t *buffer,  size_t n, const wchar_t * format, va_list argptr)

-  { return _vsnwprintf( buffer, n, format, argptr );}

+{

+    return _vsnwprintf(buffer, n, format, argptr);

+}