Andrey Gusev : oledb32: Add parentheses to the switch statement.

Alexandre Julliard julliard at winehq.org
Tue Dec 21 15:16:33 CST 2021


Module: wine
Branch: master
Commit: 9cf587c5b2c832927a439d7ab0b21c102d5b44b5
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=9cf587c5b2c832927a439d7ab0b21c102d5b44b5

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Tue Dec 21 16:41:10 2021 +0200

oledb32: Add parentheses to the switch statement.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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:




More information about the wine-cvs mailing list