Fix more format warnings

This commit is contained in:
momo5502
2025-01-05 20:09:28 +01:00
parent 69f82e5376
commit a8b4b69a8b
3 changed files with 51 additions and 39 deletions

View File

@@ -85,7 +85,7 @@ mapped_module* module_manager::map_module(const std::filesystem::path& file, log
{
auto mod = map_module_from_file(*this->emu_, std::move(canonical_file));
logger.log("Mapped %s at 0x%llX\n", mod.path.generic_string().c_str(), mod.image_base);
logger.log("Mapped %s at 0x%" PRIx64 "\n", mod.path.generic_string().c_str(), mod.image_base);
const auto image_base = mod.image_base;
const auto entry = this->modules_.try_emplace(image_base, std::move(mod));