[Lldb-commits] [lldb] r138237 - /lldb/trunk/examples/synthetic/gnu_libstdcpp.py

Enrico Granata granata.enrico at gmail.com
Mon Aug 22 09:38:44 PDT 2011


Author: enrico
Date: Mon Aug 22 11:38:44 2011
New Revision: 138237

URL: http://llvm.org/viewvc/llvm-project?rev=138237&view=rev
Log:
Fixing a startup error

Modified:
    lldb/trunk/examples/synthetic/gnu_libstdcpp.py

Modified: lldb/trunk/examples/synthetic/gnu_libstdcpp.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/synthetic/gnu_libstdcpp.py?rev=138237&r1=138236&r2=138237&view=diff
==============================================================================
--- lldb/trunk/examples/synthetic/gnu_libstdcpp.py (original)
+++ lldb/trunk/examples/synthetic/gnu_libstdcpp.py Mon Aug 22 11:38:44 2011
@@ -51,7 +51,7 @@
 				offset = offset - 1
 			return current.CreateChildAtOffset('['+str(index)+']',2*current.GetType().GetByteSize(),self.data_type)
 		except:
-			return None:
+			return None
 
 	def extract_type_name(self,name):
 		self.type_name = name[16:]





More information about the lldb-commits mailing list