diff options
-rwxr-xr-x | lldb/examples/python/disasm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/disasm.py b/lldb/examples/python/disasm.py index 3de3730c422..7264022879d 100755 --- a/lldb/examples/python/disasm.py +++ b/lldb/examples/python/disasm.py @@ -14,7 +14,7 @@ import sys import time def disassemble_instructions (insts): - for i in range(0, insts.GetSize()): + for i in range(insts.GetSize()): print insts.GetInstructionAtIndex(i) # Initialize LLDB so we can use it |