oleaut32: Avoid shadowing a parameter.

This commit is contained in:
Austin English 2011-03-09 01:08:09 -08:00 committed by Alexandre Julliard
parent 4ace7b2127
commit 651adc7fc8
1 changed files with 5 additions and 5 deletions

View File

@ -2490,11 +2490,11 @@ HRESULT WINAPI VarFormatCurrency(LPVARIANT pVarIn, INT nDigits, INT nLeading,
if (nGrouping == -2) if (nGrouping == -2)
{ {
WCHAR nGrouping[16]; WCHAR grouping[16];
nGrouping[2] = '\0'; grouping[2] = '\0';
GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, nGrouping, GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, grouping,
sizeof(nGrouping)/sizeof(WCHAR)); sizeof(grouping)/sizeof(WCHAR));
numfmt.Grouping = nGrouping[2] == '2' ? 32 : nGrouping[0] - '0'; numfmt.Grouping = grouping[2] == '2' ? 32 : grouping[0] - '0';
} }
else if (nGrouping == -1) else if (nGrouping == -1)
numfmt.Grouping = 3; /* 3 = "n,nnn.nn" */ numfmt.Grouping = 3; /* 3 = "n,nnn.nn" */