Andrew Talbot : hhctrl.ocx: Remove unneeded address-of operator from array name.

Alexandre Julliard julliard at winehq.org
Fri Jul 11 08:44:07 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Jul 10 23:08:56 2008 +0100

hhctrl.ocx: Remove unneeded address-of operator from array name.

---

 dlls/hhctrl.ocx/help.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c
index a2081ce..0e81a99 100644
--- a/dlls/hhctrl.ocx/help.c
+++ b/dlls/hhctrl.ocx/help.c
@@ -587,7 +587,7 @@ static BOOL HH_AddToolbar(HHInfo *pHHInfo)
         heap_free(szBuf);
     }
 
-    SendMessageW(hToolbar, TB_ADDBUTTONSW, dwNumButtons, (LPARAM)&buttons);
+    SendMessageW(hToolbar, TB_ADDBUTTONSW, dwNumButtons, (LPARAM)buttons);
     SendMessageW(hToolbar, TB_AUTOSIZE, 0, 0);
     ShowWindow(hToolbar, SW_SHOW);
 




More information about the wine-cvs mailing list