diff options
-rwxr-xr-x | lldb/examples/python/symbolication.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/symbolication.py b/lldb/examples/python/symbolication.py index 35354991d4b..f36396112c9 100755 --- a/lldb/examples/python/symbolication.py +++ b/lldb/examples/python/symbolication.py @@ -423,7 +423,7 @@ class Symbolicator: process = self.target.process if process: state = process.state - if state > lldb.eStateUnloaded and state < eStateDetached: + if state > lldb.eStateUnloaded and state < lldb.eStateDetached: live_process = True # If we don't have a live process, we can attempt to find the image # that a load address belongs to and lazily load its module in the |