msvcrt: Remove unneeded cast.

This commit is contained in:
Andrew Talbot 2007-12-21 17:05:36 +00:00 committed by Alexandre Julliard
parent 0d6bc9076f
commit edaa0fbc13
1 changed files with 1 additions and 1 deletions

View File

@ -2223,7 +2223,7 @@ int CDECL MSVCRT_fgetc(MSVCRT_FILE* file)
} else
j = MSVCRT__filbuf(file);
if (!(MSVCRT_fdesc[file->_file].wxflag & WX_TEXT)
|| ((j != '\r') || (file->_cnt && ((char *)file->_ptr)[0] != '\n')))
|| ((j != '\r') || (file->_cnt && file->_ptr[0] != '\n')))
return j;
} while(1);
}