From: Anders Kjersem <andersdev@proton.me> --- dlls/wshom.ocx/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wshom.ocx/shell.c b/dlls/wshom.ocx/shell.c index a613dc20b7f..1675b263895 100644 --- a/dlls/wshom.ocx/shell.c +++ b/dlls/wshom.ocx/shell.c @@ -1501,7 +1501,7 @@ static HRESULT WINAPI WshShell3_Popup(IWshShell3 *iface, BSTR text, VARIANT *sec param.text = text; param.button = -1; hthread = CreateThread(NULL, 0, popup_thread_proc, ¶m, 0, &tid); - status = WaitForHandles(1, &hthread, V_I4(&timeout) ? V_I4(&timeout) * 1000: INFINITE); + status = WaitForHandles(1, &hthread, V_I4(&timeout) ? V_I4(&timeout) * 1000 : INFINITE); if (status == WAIT_TIMEOUT) { PostThreadMessageW(tid, WM_QUIT, 0, 0); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11150