From ab6d29eb5d9d2c59fcf51b7231bf1b2854423c88 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Thu, 10 Jul 2008 23:08:56 +0100 Subject: [PATCH] hhctrl.ocx: Remove unneeded address-of operator from array name. --- dlls/hhctrl.ocx/help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index a2081cef94f..0e81a990f59 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); -- 2.11.4.GIT