Clean Warnings (?)

This commit is contained in:
N00byKing 2018-03-19 17:07:08 +01:00
parent 70d45b2a59
commit 1212e9e231
15 changed files with 20 additions and 20 deletions
src/core/loader

View file

@ -84,7 +84,7 @@ void Linker::WriteRelocations(std::vector<u8>& program_image, const std::vector<
}
break;
default:
LOG_CRITICAL(Loader, "Unknown relocation type: %d", rela.type);
LOG_CRITICAL(Loader, "Unknown relocation type: %d", static_cast<int>(rela.type));
break;
}
}