fusion: Avoid hardcoding the Unicode string literal lengths.

This commit is contained in:
Francois Gouget 2011-12-16 13:08:38 +01:00 committed by Alexandre Julliard
parent cf598bdd62
commit 598c095329
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ static inline void token_to_str(BYTE *bytes, LPWSTR str)
{
DWORD i;
static const WCHAR hexval[16] = {
static const WCHAR hexval[] = {
'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'
};