From e94a6f07f469540ea7707b14f66a32bfbec90772 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 25 Jan 2014 17:45:36 +0100 Subject: [PATCH] Fix warning --- Source/Core/Core/PowerPC/PPCTables.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/PPCTables.cpp b/Source/Core/Core/PowerPC/PPCTables.cpp index 5854f1f0da..758fbae6c9 100644 --- a/Source/Core/Core/PowerPC/PPCTables.cpp +++ b/Source/Core/Core/PowerPC/PPCTables.cpp @@ -199,7 +199,7 @@ void PrintInstructionRunCounts() if (inst.second == 0) break; - DEBUG_LOG(POWERPC, "%s : %llu", inst.first, inst.second); + DEBUG_LOG(POWERPC, "%s : %" PRIu64, inst.first, inst.second); //PanicAlert("%s : %llu", inst.first, inst.second); } }