elf.lua: fix a typo

This commit is contained in:
Přemysl Eric Janouch 2023-06-18 22:45:46 +02:00
parent 62c6d43ca3
commit b87206bb93
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ local decode_ph = function (elf, c)
ph.vaddr = elf.uwide (c, "virtual address: %#x")
ph.paddr = elf.uwide (c, "physical address: %#x")
ph.filesz = elf.uwide (c, "size in file: %d")
ph.memsz = elf.uwide (c, "sise in memory: %d")
ph.memsz = elf.uwide (c, "size in memory: %d")
if elf.class == 1 then ph.flags = c:u32 ("flags: %s", xform_ph_flags) end
ph.align = elf.uwide (c, "alignment: %d")
return ph