ntdll/tests: Fix a trace format on ARM64.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-11-26 17:12:08 +01:00
parent c36f580cc4
commit ce5e1c12c3
1 changed files with 1 additions and 1 deletions

View File

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