diff options
Diffstat (limited to 'test/Scripts/elf-dump')
-rwxr-xr-x | test/Scripts/elf-dump | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Scripts/elf-dump b/test/Scripts/elf-dump index d3fad34..f116e3a 100755 --- a/test/Scripts/elf-dump +++ b/test/Scripts/elf-dump @@ -97,7 +97,7 @@ def dumpSymtab(f, section, strtab): for index in range(entries): f.seek(section.sh_offset + index * section.sh_entsize) - print " # Symbol %s" % common_dump.HexDump(index) + print " # Symbol %s" % index name = f.read32() print " (('st_name', %s)" % common_dump.HexDump(name), "# %r" % strtab[name] if not f.is64Bit: |