1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 11:17:43 +00:00

ELF: Make code a little more buildable on other platforms

Patch from Anonymous.
This commit is contained in:
Andreas Kling 2019-09-27 13:29:05 +02:00
parent 0b59c0d0dc
commit 9c3c117f05
3 changed files with 7 additions and 2 deletions

View file

@ -98,7 +98,7 @@ bool ELFImage::parse()
{
// We only support i386.
if (header().e_machine != 3) {
kprintf("ELFImage::parse(): e_machine=%u not supported!\n");
kprintf("ELFImage::parse(): e_machine=%u not supported!\n", header().e_machine);
return false;
}