Fixed typo.

This commit is contained in:
Uwe Bonnes 2004-05-27 20:01:34 +00:00 committed by Alexandre Julliard
parent 880c0c8614
commit f7e9e5b788
1 changed files with 1 additions and 1 deletions

View File

@ -1439,7 +1439,7 @@ int _setmode(int fd,int mode)
if ((mode & _O_TEXT) == _O_TEXT)
MSVCRT_fdesc[fd].xflag |= WX_TEXT;
else
MSVCRT_fdesc[fd].xflag &= WX_TEXT;
MSVCRT_fdesc[fd].xflag &= ~WX_TEXT;
return ret;
}