[PATCH] ntdll/tests: Avoid the comma operator

Michael Stefaniuc mstefani at winehq.org
Mon Apr 29 14:13:19 CDT 2019


Signed-off-by: Michael Stefaniuc <mstefani 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 4f75cc2454..ada28c91eb 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. */
-- 
2.20.1




More information about the wine-devel mailing list