diff options
author | Sean Callanan <scallanan@apple.com> | 2012-01-20 19:27:48 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-01-20 19:27:48 +0000 |
commit | 88685f2865ef9636cb865f4018a84e51231f75f9 (patch) | |
tree | b4eedf8c12dbd516e2ee1cc6a84f926093e0d3b1 /lldb/examples/python | |
parent | 42a6eb7195b9d4cdda97304bd9d8cd750d2cd725 (diff) | |
download | bcm5719-llvm-88685f2865ef9636cb865f4018a84e51231f75f9.tar.gz bcm5719-llvm-88685f2865ef9636cb865f4018a84e51231f75f9.zip |
Fixed a global reference that should have been
a reference to a class variable.
llvm-svn: 148562
Diffstat (limited to 'lldb/examples/python')
-rwxr-xr-x | lldb/examples/python/crashlog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py index 75519aa4d4c..feba1c4eddc 100755 --- a/lldb/examples/python/crashlog.py +++ b/lldb/examples/python/crashlog.py @@ -385,7 +385,7 @@ class CrashLog: return None # success # We weren't able to open the main executable as, but we can still symbolicate if self.idents: - for ident in idents: + for ident in self.idents: image = self.find_image_with_identifier (ident) if image: err = image.create_target () |