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

Signed-off-by: Sven Baars <sbaars@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sven Baars 2020-08-02 19:20:22 +02:00 committed by Alexandre Julliard
parent 3dbb87a3d0
commit 333a867f75
1 changed files with 1 additions and 1 deletions

View File

@ -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)