-added long file names support

-small bug fix

git-svn-id: svn://kolibrios.org@244 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
victor
2006-12-24 00:14:30 +00:00
parent b22c241723
commit 6ec45316ae
7 changed files with 7 additions and 270 deletions

View File

@@ -3,5 +3,5 @@ int fflush(FILE* file)
{
if ((file->mode & 3)==FILE_OPEN_READ)
return 0;
return _msys_file_write(file->filename,file->filesize,file->buffer) ? EOF : 0;
return _msys_file_write(file->filename, 0, file->filesize, file->buffer) ? EOF : 0;
}