mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +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 EOF;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (TCHAR)ch;
|
return ch & (sizeof(TCHAR) > sizeof(char) ? 0xffff : 0xff);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue