Commit f0465fb0 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

comdlg32: Remove unneeded address-of operator from array name.

parent e68643f1
......@@ -1350,7 +1350,7 @@ static void init_toolbar(FileDialogImpl *This, HWND hwnd)
button[1].dwData = 0;
button[1].iString = 0;
SendMessageW(htoolbar, TB_ADDBUTTONSW, 2, (LPARAM)&button);
SendMessageW(htoolbar, TB_ADDBUTTONSW, 2, (LPARAM)button);
SendMessageW(htoolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(24,24));
SendMessageW(htoolbar, TB_AUTOSIZE, 0, 0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment