aboutsummaryrefslogtreecommitdiff
path: root/test/Scripts
diff options
context:
space:
mode:
Diffstat (limited to 'test/Scripts')
-rwxr-xr-xtest/Scripts/elf-dump2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Scripts/elf-dump b/test/Scripts/elf-dump
index a94079c524..d335e69b43 100755
--- a/test/Scripts/elf-dump
+++ b/test/Scripts/elf-dump
@@ -107,7 +107,7 @@ def dumpSymtab(f, section, strtab):
st_bind = (st_info >> 4, 4)
st_type = (st_info & 0xf, 4)
print " ('st_bind', %s)" % common_dump.HexDump(st_bind[0], st_bind[1])
- print " ('st_type', %s)" % common_dump.HexDump(st_type[0], 32)
+ print " ('st_type', %s)" % common_dump.HexDump(st_type[0], st_type[1])
print " ('st_other', %s)" % common_dump.HexDump(f.read8())
print " ('st_shndx', %s)" % common_dump.HexDump(f.read16())
if f.is64Bit: