Michael Stefaniuc : ntdll/tests: Avoid the comma operator.

Alexandre Julliard julliard at winehq.org
Mon Apr 29 16:08:50 CDT 2019


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

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Mon Apr 29 21:13:19 2019 +0200

ntdll/tests: Avoid the comma operator.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/tests/exception.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c
index 4f75cc2..ada28c9 100644
--- a/dlls/ntdll/tests/exception.c
+++ b/dlls/ntdll/tests/exception.c
@@ -3274,7 +3274,7 @@ static void test_suspend_process(void)
     startup.cb = sizeof(startup);
     sprintf(path_name, "%s exception suspend_process", argv[0]);
 
-    ret = CreateProcessA(NULL, path_name, NULL, NULL, FALSE, 0, NULL, NULL, &startup, &info),
+    ret = CreateProcessA(NULL, path_name, NULL, NULL, FALSE, 0, NULL, NULL, &startup, &info);
     ok(ret, "Failed to create target process.\n");
 
     /* New process signals this event. */




More information about the wine-cvs mailing list