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

Alexandre Julliard julliard at winehq.org
Wed Nov 2 14:23:35 CDT 2011


Module: wine
Branch: master
Commit: cb84c2dac1f0d78eca0ce9dcd6a88e75a2c3eb95
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cb84c2dac1f0d78eca0ce9dcd6a88e75a2c3eb95

Author: Andrew Talbot <andrew.talbot at 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]))




More information about the wine-cvs mailing list