diff options
Diffstat (limited to 'llvm/test/Scripts/macho-dump')
-rwxr-xr-x | llvm/test/Scripts/macho-dump | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Scripts/macho-dump b/llvm/test/Scripts/macho-dump index 665399d06dd..800015ec825 100755 --- a/llvm/test/Scripts/macho-dump +++ b/llvm/test/Scripts/macho-dump @@ -198,7 +198,7 @@ def dumpDysymtabCommand(f, opts): print " ('_indirect_symbols', [" for i in range(nindirectsyms): print " # Indirect Symbol %r" % i - print " (('symbol_index', %r),)," % f.read32() + print " (('symbol_index', %#x),)," % f.read32() print " ])" f.seek(prev_pos) |