[PATCH] oledb32: Add missing parentheses to the switch statement.

Andrey Gusev andrey.goosev at gmail.com
Tue Dec 21 08:41:10 CST 2021


Signed-off-by: Andrey Gusev <andrey.goosev at 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




More information about the wine-devel mailing list