dwrite: Use proper type for return value.

This commit is contained in:
Nikolay Sivov 2014-09-22 19:22:27 +04:00 committed by Alexandre Julliard
parent e65307f29f
commit 2c6cc0be46
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ static inline void set_break_condition(UINT32 pos, enum BreakConditionLocation l
}
}
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)];
}