io.files.windows: use CreateFileW in open-file for consistency

char-rename
Alexander Iljin 2016-05-25 10:18:28 +03:00 committed by John Benediktsson
parent 7a94230899
commit ae1c7b7a54
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ M: windows init-stdio
: open-file ( path access-mode create-mode flags -- handle )
[
[ share-mode default-security-attributes ] 2dip
CreateFile-flags f CreateFile opened-file
CreateFile-flags f CreateFileW opened-file
] with-destructors ;
: open-r/w ( path -- win32-file )