diff --git a/Utilities/stack_trace.cpp b/Utilities/stack_trace.cpp index 049e0f1805..ef188db614 100644 --- a/Utilities/stack_trace.cpp +++ b/Utilities/stack_trace.cpp @@ -135,7 +135,7 @@ namespace utils } else { - result.push_back(fmt::format("rpcs3@0xp", pointer)); + result.push_back(fmt::format("rpcs3@0x%p", pointer)); } } diff --git a/rpcs3/Emu/Cell/lv2/sys_fs.cpp b/rpcs3/Emu/Cell/lv2/sys_fs.cpp index a34c0c301c..082a1ae1f6 100644 --- a/rpcs3/Emu/Cell/lv2/sys_fs.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_fs.cpp @@ -1304,7 +1304,7 @@ error_code sys_fs_write(ppu_thread& ppu, u32 fd, vm::cptr buf, u64 nbytes, if (file->type != lv2_file_type::regular) { - sys_fs.error("%s type: Writing %u bytes to FD=%d (path=%s)", file->type, nbytes, file->name.data()); + sys_fs.error("%s type: Writing %u bytes to FD=%d (path=%s)", file->type, nbytes, fd, file->name.data()); } if (file->mp.read_only)