[PATCH] oledb32: Add missing parentheses to the switch statement.
21 Dec
2021
21 Dec
'21
2:41 p.m.
Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> --- dlls/oledb32/dslocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oledb32/dslocator.c b/dlls/oledb32/dslocator.c index 95fd7687560..d35e1eb116f 100644 --- a/dlls/oledb32/dslocator.c +++ b/dlls/oledb32/dslocator.c @@ -492,7 +492,7 @@ static INT_PTR CALLBACK data_link_connection_dlg_proc(HWND hwnd, UINT msg, WPARA } case WM_COMMAND: { - switch LOWORD(wp) + switch (LOWORD(wp)) { case IDC_RDO_SRC_NAME: case IDC_BTN_CONNECTION: -- 2.33.1
1457
Age (days ago)
1457
Last active (days ago)
0 comments
1 participants
participants (1)
-
Andrey Gusev