From e65307f29f18fff724d2630e6263169a5a4d9f46 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Mon, 22 Sep 2014 19:21:47 +0400 Subject: [PATCH] usp10: Use proper type for return value. --- dlls/usp10/usp10_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/usp10/usp10_internal.h b/dlls/usp10/usp10_internal.h index 77bb20d2012..504bd550009 100644 --- a/dlls/usp10/usp10_internal.h +++ b/dlls/usp10/usp10_internal.h @@ -208,7 +208,7 @@ static inline BOOL is_consonant( int type ) 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)]; }