shell32: Remove unneeded address-of operators from array names.

This commit is contained in:
Andrew Talbot 2011-11-01 22:51:42 +00:00 committed by Alexandre Julliard
parent 7998cd4629
commit cb84c2dac1
1 changed files with 2 additions and 2 deletions

View File

@ -418,8 +418,8 @@ static void DoOpenProperties(ItemCmImpl *This, HWND hwnd)
psh.u3.phpage = hpages;
psh.u2.nStartPage = 0;
_ILSimpleGetTextW(This->apidl[0], (LPVOID)&wszFilename, MAX_PATH);
psh.pszCaption = (LPCWSTR)&wszFilename;
_ILSimpleGetTextW(This->apidl[0], (LPVOID)wszFilename, MAX_PATH);
psh.pszCaption = (LPCWSTR)wszFilename;
/* Find out where to look for the shell extensions */
if (_ILIsValue(This->apidl[0]))