usp10: Constify a character string.

oldstable
Frédéric Delanoy 2013-12-17 22:17:43 +01:00 committed by Alexandre Julliard
parent a0a1a5fca5
commit 62da5f2604
1 changed files with 1 additions and 1 deletions

View File

@ -1392,7 +1392,7 @@ static HRESULT _ItemizeInternal(const WCHAR *pwcInChars, int cInChars,
else
{
BOOL inNumber = FALSE;
static WCHAR math_punc[] = {'#','$','%','+',',','-','.','/',':',0x2212, 0x2044, 0x00a0,0};
static const WCHAR math_punc[] = {'#','$','%','+',',','-','.','/',':',0x2212, 0x2044, 0x00a0,0};
strength = heap_alloc_zero(cInChars * sizeof(WORD));
if (!strength)