diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-02-14 00:57:06 -0500 | 
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-02-14 01:52:55 -0500 | 
| commit | e6bf72877fb2906b484716ff22e39db0a2db34e7 (patch) | |
| tree | ec499ff6bc270fe029207373c54239c6ca60730d | |
| parent | 2ade136ff48e0385836736d9fe3d39fa0c30e5b3 (diff) | |
nso: Silence formatting specifier warnings
| -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; | 
