[Lldb-commits] [lldb] r186358 - Fix typeo in diagnose-unwind.py.
Jason Molenda
jmolenda at apple.com
Mon Jul 15 15:40:17 PDT 2013
Author: jmolenda
Date: Mon Jul 15 17:40:17 2013
New Revision: 186358
URL: http://llvm.org/viewvc/llvm-project?rev=186358&view=rev
Log:
Fix typeo in diagnose-unwind.py.
Modified:
lldb/trunk/examples/python/diagnose_unwind.py
Modified: lldb/trunk/examples/python/diagnose_unwind.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/diagnose_unwind.py?rev=186358&r1=186357&r2=186358&view=diff
==============================================================================
--- lldb/trunk/examples/python/diagnose_unwind.py (original)
+++ lldb/trunk/examples/python/diagnose_unwind.py Mon Jul 15 17:40:17 2013
@@ -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)
More information about the lldb-commits
mailing list