From 5806e4b5045f8702b0ddd9b5ab0cc40ba5115876 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sun, 6 Jul 2008 13:00:47 +0100 Subject: [PATCH] user32: Remove unneeded address-of operators from function names. --- dlls/user32/nonclient.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user32/nonclient.c b/dlls/user32/nonclient.c index 729a901c678..b11f4744bb8 100644 --- a/dlls/user32/nonclient.c +++ b/dlls/user32/nonclient.c @@ -1254,7 +1254,7 @@ static void NC_TrackMinMaxBox( HWND hwnd, WORD wParam ) /* Check if the sysmenu item for minimize is there */ state = GetMenuState(hSysMenu, SC_MINIMIZE, MF_BYCOMMAND); - paintButton = &NC_DrawMinButton; + paintButton = NC_DrawMinButton; } else { @@ -1265,7 +1265,7 @@ static void NC_TrackMinMaxBox( HWND hwnd, WORD wParam ) /* Check if the sysmenu item for maximize is there */ state = GetMenuState(hSysMenu, SC_MAXIMIZE, MF_BYCOMMAND); - paintButton = &NC_DrawMaxButton; + paintButton = NC_DrawMaxButton; } SetCapture( hwnd );