summaryrefslogtreecommitdiff
path: root/Source/Core/Common/x64Emitter.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2015-09-06 21:02:22 +1200
committerScott Mansell <phiren@gmail.com>2015-09-06 21:02:22 +1200
commitbe4caa3dc025d18d57cf53b27e505c19bb70544e (patch)
tree05e246462f966736dff64a897b6441b36600f996 /Source/Core/Common/x64Emitter.cpp
parentd52d8bf93514f7fa5492abc7bff33162148972c1 (diff)
parent8fdb013d540cf5d79a23888053fda2897f997e61 (diff)
Merge pull request #2961 from lioncash/printf
General: Toss out PRI macro usage
Diffstat (limited to 'Source/Core/Common/x64Emitter.cpp')
-rw-r--r--Source/Core/Common/x64Emitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/x64Emitter.cpp b/Source/Core/Common/x64Emitter.cpp
index f2763d83a8..304316ef12 100644
--- a/Source/Core/Common/x64Emitter.cpp
+++ b/Source/Core/Common/x64Emitter.cpp
@@ -236,7 +236,7 @@ void OpArg::WriteRest(XEmitter* emit, int extraBytes, X64Reg _operandReg,
(distance < 0x80000000LL &&
distance >= -0x80000000LL) ||
!warn_64bit_offset,
- "WriteRest: op out of range (0x%" PRIx64 " uses 0x%" PRIx64 ")",
+ "WriteRest: op out of range (0x%llx uses 0x%llx)",
ripAddr, offset);
s32 offs = (s32)distance;
emit->Write32((u32)offs);