From 99b7516c8cfc52dbc77f779dd7d8a768854e9399 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sat, 13 Jan 2018 18:31:39 +0000 Subject: [PATCH] testenv: Use format constants --- tests/A64/testenv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/A64/testenv.h b/tests/A64/testenv.h index 3ed19ddb..ba9bb46b 100644 --- a/tests/A64/testenv.h +++ b/tests/A64/testenv.h @@ -68,7 +68,7 @@ public: MemoryWrite32(vaddr + 4, static_cast(value >> 32)); } - void InterpreterFallback(u64 pc, size_t num_instructions) override { ASSERT_MSG(false, "InterpreterFallback(%llx, %zu)", pc, num_instructions); } + void InterpreterFallback(u64 pc, size_t num_instructions) override { ASSERT_MSG(false, "InterpreterFallback(%" PRIx64 ", %zu)", pc, num_instructions); } void CallSVC(std::uint32_t swi) override { ASSERT_MSG(false, "CallSVC(%u)", swi); }