mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
kernel32/tests: Correct an ok() statement.
This commit is contained in:
parent
d62c05f720
commit
54845cd40a
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user