ntdll/tests: Fix a trace format on ARM64.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c36f580cc4
commit
ce5e1c12c3
|
@ -5360,7 +5360,7 @@ static void test_thread_context(void)
|
|||
/* Pc is somewhere close to the NtGetContextThread implementation */
|
||||
ok( (char *)context.Pc >= (char *)pNtGetContextThread - 0x40000 &&
|
||||
(char *)context.Pc <= (char *)pNtGetContextThread + 0x40000,
|
||||
"wrong Pc %08x/%08x\n", context.Pc, (DWORD)pNtGetContextThread );
|
||||
"wrong Pc %p/%p\n", (void *)context.Pc, pNtGetContextThread );
|
||||
#undef COMPARE
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue