aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2023-06-18 22:45:46 +0200
committerPřemysl Eric Janouch <p@janouch.name>2023-06-18 22:46:10 +0200
commitb87206bb931f10da622a95f8bd2f01b1ad6be706 (patch)
treea17a56823a677b917ce9fa95d1d37822cd58b057
parent62c6d43ca327dcbf8832b3a210a41e1b822da593 (diff)
downloadhex-b87206bb931f10da622a95f8bd2f01b1ad6be706.tar.gz
hex-b87206bb931f10da622a95f8bd2f01b1ad6be706.tar.xz
hex-b87206bb931f10da622a95f8bd2f01b1ad6be706.zip
elf.lua: fix a typo
-rw-r--r--plugins/elf.lua2
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