mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
[CRT]
* Update _wsopen(). CORE-8080 svn path=/trunk/; revision=63296
This commit is contained in:
@@ -1822,11 +1822,11 @@ int CDECL _wsopen( const wchar_t *path, int oflags, int shflags, ... )
|
||||
|
||||
if (oflags & _O_CREAT)
|
||||
{
|
||||
va_list ap;
|
||||
__ms_va_list ap;
|
||||
|
||||
va_start(ap, shflags);
|
||||
__ms_va_start(ap, shflags);
|
||||
pmode = va_arg(ap, int);
|
||||
va_end(ap);
|
||||
__ms_va_end(ap);
|
||||
}
|
||||
else
|
||||
pmode = 0;
|
||||
|
||||
Reference in New Issue
Block a user