diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-02-12 20:01:49 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-02-12 20:01:49 +0000 |
commit | 4d3c008c7d1ec5a6ef0c4426c216c62d179df16d (patch) | |
tree | 6bb52e9a814ecb92f6705f0af1c5e36ac8616fab /lldb/scripts/Python/interface/SBDebugger.i | |
parent | f377160d2f54c43002a1dc60a855094f1e6d1ff0 (diff) | |
download | bcm5719-llvm-4d3c008c7d1ec5a6ef0c4426c216c62d179df16d.tar.gz bcm5719-llvm-4d3c008c7d1ec5a6ef0c4426c216c62d179df16d.zip |
Fix document typos, indentation in python code, and API examples.
Patch by Bruce Mitchener!
llvm-svn: 175002
Diffstat (limited to 'lldb/scripts/Python/interface/SBDebugger.i')
-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() |