mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[CRT]
* Update _wsopen(). CORE-8080 svn path=/trunk/; revision=63296
This commit is contained in:
parent
49d0927079
commit
3396b21b26
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue