mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[CRT]
Fix _flsbuf return value svn path=/trunk/; revision=50314
This commit is contained in:
parent
7f7729cb6c
commit
c413c22ddf
1 changed files with 1 additions and 1 deletions
|
@ -78,5 +78,5 @@ _flsbuf(int ch, FILE *stream)
|
|||
return EOF;
|
||||
}
|
||||
|
||||
return (TCHAR)ch;
|
||||
return ch & (sizeof(TCHAR) > sizeof(char) ? 0xffff : 0xff);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue