diff options
author | Lioncash <mathew1800@gmail.com> | 2018-02-14 06:57:06 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-02-14 07:52:55 +0100 |
commit | e6bf72877fb2906b484716ff22e39db0a2db34e7 (patch) | |
tree | ec499ff6bc270fe029207373c54239c6ca60730d /src/core | |
parent | deconstructed_rom_directory: Silence formatting specifier warnings (diff) | |
download | yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.tar yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.tar.gz yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.tar.bz2 yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.tar.lz yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.tar.xz yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.tar.zst yuzu-e6bf72877fb2906b484716ff22e39db0a2db34e7.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/loader/nso.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index 3ccbbb824..407025da0 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <cinttypes> #include <vector> #include <lz4.h> #include "common/common_funcs.h" @@ -82,7 +83,7 @@ static std::vector<u8> ReadSegment(FileUtil::IOFile& file, const NsoSegmentHeade reinterpret_cast<char*>(uncompressed_data.data()), compressed_size, header.size); ASSERT_MSG(bytes_uncompressed == header.size && bytes_uncompressed == uncompressed_data.size(), - "%d != %d != %d", bytes_uncompressed, header.size, uncompressed_data.size()); + "%d != %u != %zu", bytes_uncompressed, header.size, uncompressed_data.size()); return uncompressed_data; } @@ -158,7 +159,8 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) { // Load module LoadModule(filepath, Memory::PROCESS_IMAGE_VADDR); - LOG_DEBUG(Loader, "loaded module %s @ 0x%llx", filepath.c_str(), Memory::PROCESS_IMAGE_VADDR); + LOG_DEBUG(Loader, "loaded module %s @ 0x%" PRIx64, filepath.c_str(), + Memory::PROCESS_IMAGE_VADDR); process->svc_access_mask.set(); process->address_mappings = default_address_mappings; |