Module: wine Branch: master Commit: a0b9b4ee2a7cd5254c3a0d5a3094b8acebfb3e1f URL: https://gitlab.winehq.org/wine/wine/-/commit/a0b9b4ee2a7cd5254c3a0d5a3094b8a...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Jul 19 12:17:20 2023 +0200
compstui/tests: Use nameless unions/structs.
---
dlls/compstui/tests/compstui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/compstui/tests/compstui.c b/dlls/compstui/tests/compstui.c index 2634875db63..74d7e34e39e 100644 --- a/dlls/compstui/tests/compstui.c +++ b/dlls/compstui/tests/compstui.c @@ -198,7 +198,7 @@ static LONG WINAPI propsheetui_callback(PROPSHEETUI_INFO *info, LPARAM lparam)
memset(&psp, 0, sizeof(psp)); psp.dwSize = sizeof(psp); - U(psp).pszTemplate = L"prop_page1"; + psp.pszTemplate = L"prop_page1"; psp.pfnDlgProc = prop_page_proc2; ret = info->pfnComPropSheet(info->hComPropSheet, CPSFUNC_ADD_PROPSHEETPAGEW, (LPARAM)&psp, 0); ok(ret, "ret = 0\n");