aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-07-15 22:40:17 +0000
committerJason Molenda <jmolenda@apple.com>2013-07-15 22:40:17 +0000
commita5445d5012a890ca08676773d5f27393ab0d4f2d (patch)
tree3ae11535f04a783acbd87fa717945abad3b8cfce /examples
parent1e46e1a0d88b2a8a132550d346b23ed93f03165a (diff)
downloadlldb-a5445d5012a890ca08676773d5f27393ab0d4f2d.tar.gz
Fix typeo in diagnose-unwind.py.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@186358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/python/diagnose_unwind.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/python/diagnose_unwind.py b/examples/python/diagnose_unwind.py
index e0b9305f2..e977c4ed1 100644
--- a/examples/python/diagnose_unwind.py
+++ b/examples/python/diagnose_unwind.py
@@ -69,7 +69,7 @@ def simple_backtrace(debugger):
module_list = []
address_list = [cur_thread.GetFrameAtIndex(0).GetPC()]
this_module = backtrace_print_frame (target, 0, cur_thread.GetFrameAtIndex(0).GetPC(), initial_fp)
- print_stack_frame (process, cur_fp)
+ print_stack_frame (process, initial_fp)
print ""
if this_module != None:
module_list.append (this_module)