ntdll/tests: Avoid the comma operator.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
34408796b9
commit
21f3bf53dc
|
@ -3274,7 +3274,7 @@ static void test_suspend_process(void)
|
||||||
startup.cb = sizeof(startup);
|
startup.cb = sizeof(startup);
|
||||||
sprintf(path_name, "%s exception suspend_process", argv[0]);
|
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");
|
ok(ret, "Failed to create target process.\n");
|
||||||
|
|
||||||
/* New process signals this event. */
|
/* New process signals this event. */
|
||||||
|
|
Loading…
Reference in New Issue