mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
crtdll: Supress sign-extension through integer promotion.
This commit is contained in:
parent
013991e6e4
commit
6176fa469a
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ size_t CDECL _strncnt(const char *str, size_t maxlen)
|
||||||
*/
|
*/
|
||||||
unsigned int CDECL _strnextc(const char *str)
|
unsigned int CDECL _strnextc(const char *str)
|
||||||
{
|
{
|
||||||
return (unsigned int)str[0];
|
return (unsigned char)str[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue