filesystem: use correct flushing function for file descriptors on Win32
This commit is contained in:
parent
90c566dde3
commit
10ad1c3b38
1 changed files with 1 additions and 1 deletions
|
@ -1984,7 +1984,7 @@ int FS_Flush( file_t *file )
|
|||
if( fsync( file->handle ) < 0 )
|
||||
return EOF;
|
||||
#else
|
||||
if( fflush( file->handle ) < 0 )
|
||||
if( _commit( file->handle ) < 0 )
|
||||
return EOF;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue