kernel32/tests: Correct an ok() statement.

This commit is contained in:
Paul Vriens 2009-03-04 13:55:07 +01:00 committed by Alexandre Julliard
parent d62c05f720
commit 54845cd40a
1 changed files with 2 additions and 1 deletions

View File

@ -942,7 +942,8 @@ START_TEST(console)
ok(hConIn != INVALID_HANDLE_VALUE, "Opening ConIn\n");
ok(hConOut != INVALID_HANDLE_VALUE, "Opening ConOut\n");
ok(ret = GetConsoleScreenBufferInfo(hConOut, &sbi), "Getting sb info\n");
ret = GetConsoleScreenBufferInfo(hConOut, &sbi);
ok(ret, "Getting sb info\n");
if (!ret) return;
/* Non interactive tests */