usp10: Use proper type for return value.
This commit is contained in:
parent
85b989927f
commit
e65307f29f
|
@ -208,7 +208,7 @@ static inline BOOL is_consonant( int type )
|
||||||
return (type == lex_Ra || type == lex_Consonant);
|
return (type == lex_Ra || type == lex_Consonant);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline WCHAR get_table_entry( const unsigned short *table, WCHAR ch )
|
static inline unsigned short get_table_entry( const unsigned short *table, WCHAR ch )
|
||||||
{
|
{
|
||||||
return table[table[table[ch >> 8] + ((ch >> 4) & 0x0f)] + (ch & 0xf)];
|
return table[table[table[ch >> 8] + ((ch >> 4) & 0x0f)] + (ch & 0xf)];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue