Andrew Talbot : shell32: Remove unneeded address-of operators from array names.
Module: wine Branch: master Commit: cb84c2dac1f0d78eca0ce9dcd6a88e75a2c3eb95 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cb84c2dac1f0d78eca0ce9dcd6... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Tue Nov 1 22:51:42 2011 +0000 shell32: Remove unneeded address-of operators from array names. --- dlls/shell32/shv_item_cmenu.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shv_item_cmenu.c b/dlls/shell32/shv_item_cmenu.c index 245bbd4..604099c 100644 --- a/dlls/shell32/shv_item_cmenu.c +++ b/dlls/shell32/shv_item_cmenu.c @@ -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]))
participants (1)
-
Alexandre Julliard