Commit ce5e1c12 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll/tests: Fix a trace format on ARM64.

parent c36f580c
...@@ -5360,7 +5360,7 @@ static void test_thread_context(void) ...@@ -5360,7 +5360,7 @@ static void test_thread_context(void)
/* Pc is somewhere close to the NtGetContextThread implementation */ /* Pc is somewhere close to the NtGetContextThread implementation */
ok( (char *)context.Pc >= (char *)pNtGetContextThread - 0x40000 && ok( (char *)context.Pc >= (char *)pNtGetContextThread - 0x40000 &&
(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 #undef COMPARE
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment