Commit 333a867f authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

ntoskrnl.exe/tests: Add a missing argument to an ok call (Coverity).

parent 3dbb87a3
......@@ -1614,7 +1614,7 @@ static void test_completion(void)
IoSetCompletionRoutine(irp, completion_cb, NULL, TRUE, TRUE, TRUE);
ret = IoCallDriver(upper_device, irp);
ok(ret == STATUS_SUCCESS, "IoCallDriver returned %#x\n", ret);
ok(got_completion == 2, "got %u calls to completion routine\n");
ok(got_completion == 2, "got %u calls to completion routine\n", got_completion);
}
static void test_IoAttachDeviceToDeviceStack(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment