Author: akhaldi
Date: Wed May 14 18:24:38 2014
New Revision: 63296
URL:
http://svn.reactos.org/svn/reactos?rev=63296&view=rev
Log:
[CRT]
* Update _wsopen().
CORE-8080
Modified:
trunk/reactos/lib/sdk/crt/stdio/file.c
Modified: trunk/reactos/lib/sdk/crt/stdio/file.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/file.c?r…
==============================================================================
--- trunk/reactos/lib/sdk/crt/stdio/file.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/stdio/file.c [iso-8859-1] Wed May 14 18:24:38 2014
@@ -1822,11 +1822,11 @@
if (oflags & _O_CREAT)
{
- va_list ap;
-
- va_start(ap, shflags);
+ __ms_va_list ap;
+
+ __ms_va_start(ap, shflags);
pmode = va_arg(ap, int);
- va_end(ap);
+ __ms_va_end(ap);
}
else
pmode = 0;