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:
parent
0b59c0d0dc
commit
9c3c117f05
3 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue