diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-18 22:45:46 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-18 22:46:10 +0200 |
commit | b87206bb931f10da622a95f8bd2f01b1ad6be706 (patch) | |
tree | a17a56823a677b917ce9fa95d1d37822cd58b057 /plugins | |
parent | 62c6d43ca327dcbf8832b3a210a41e1b822da593 (diff) | |
download | hex-b87206bb931f10da622a95f8bd2f01b1ad6be706.tar.gz hex-b87206bb931f10da622a95f8bd2f01b1ad6be706.tar.xz hex-b87206bb931f10da622a95f8bd2f01b1ad6be706.zip |
elf.lua: fix a typo
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/elf.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/elf.lua b/plugins/elf.lua index f12cadf..439c112 100644 --- a/plugins/elf.lua +++ b/plugins/elf.lua @@ -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 |