mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
kernel32/tests: Fix typos in ok() messages.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
169c3879b9
commit
bf8eb24913
1 changed files with 2 additions and 2 deletions
|
@ -1012,8 +1012,8 @@ static VOID test_GetCurrentThreadStackLimits(void)
|
|||
}
|
||||
|
||||
pGetCurrentThreadStackLimits(&low, &high);
|
||||
ok(low == (ULONG_PTR)NtCurrentTeb()->DeallocationStack, "exptected %p, got %lx\n", NtCurrentTeb()->DeallocationStack, low);
|
||||
ok(high == (ULONG_PTR)NtCurrentTeb()->Tib.StackBase, "exptected %p, got %lx\n", NtCurrentTeb()->Tib.StackBase, high);
|
||||
ok(low == (ULONG_PTR)NtCurrentTeb()->DeallocationStack, "expected %p, got %lx\n", NtCurrentTeb()->DeallocationStack, low);
|
||||
ok(high == (ULONG_PTR)NtCurrentTeb()->Tib.StackBase, "expected %p, got %lx\n", NtCurrentTeb()->Tib.StackBase, high);
|
||||
}
|
||||
|
||||
static VOID test_GetThreadExitCode(void)
|
||||
|
|
Loading…
Reference in a new issue