diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-04 19:44:39 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-05 16:02:35 -0400 |
| commit | 8fdb013d540cf5d79a23888053fda2897f997e61 (patch) | |
| tree | 6ac7062b09950a1de6fca32c3319cd222487f242 /Source/Core/Common/JitRegister.cpp | |
| parent | e01428935fe10cf8461a9b0acf6dab3635770173 (diff) | |
General: Toss out PRI macro usage
Now that VS supports more printf specifiers, these aren't necessary
Diffstat (limited to 'Source/Core/Common/JitRegister.cpp')
| -rw-r--r-- | Source/Core/Common/JitRegister.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/JitRegister.cpp b/Source/Core/Common/JitRegister.cpp index 33dbcb52f9..26d760707a 100644 --- a/Source/Core/Common/JitRegister.cpp +++ b/Source/Core/Common/JitRegister.cpp @@ -96,7 +96,7 @@ void RegisterV(const void* base_address, u32 code_size, if (s_perf_map_file.IsOpen()) { std::string entry = StringFromFormat( - "%" PRIx64 " %x %s\n", + "%llx %x %s\n", (u64)base_address, code_size, symbol_name.data()); s_perf_map_file.WriteBytes(entry.data(), entry.size()); } |
