diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBDebugger.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBDebugger.i b/lldb/scripts/Python/interface/SBDebugger.i index a27d280de7e..43cc16e7394 100644 --- a/lldb/scripts/Python/interface/SBDebugger.i +++ b/lldb/scripts/Python/interface/SBDebugger.i @@ -87,7 +87,7 @@ if target: #print value print '%s (number of children = %d):' % (value.GetName(), value.GetNumChildren()) for child in value: - print 'Name: ', child.GetName(), ' Value: ', child.GetValue(frame) + print 'Name: ', child.GetName(), ' Value: ', child.GetValue() print 'Hit the breakpoint at main, enter to continue and wait for program to exit or \'Ctrl-D\'/\'quit\' to terminate the program' next = sys.stdin.readline() |