From ce5e1c12c37cffd403c6f2b0042a9239d07d6af8 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 26 Nov 2020 17:12:08 +0100 Subject: [PATCH] ntdll/tests: Fix a trace format on ARM64. Signed-off-by: Alexandre Julliard --- dlls/ntdll/tests/exception.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index b2331b739ac..3451a7d6465 100644 --- a/dlls/ntdll/tests/exception.c +++ b/dlls/ntdll/tests/exception.c @@ -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 }