aboutsummaryrefslogtreecommitdiff
path: root/wa/utils
diff options
context:
space:
mode:
authorMarc Bonnici <marc.bonnici@arm.com>2018-07-02 15:28:06 +0100
committersetrofim <setrofim@gmail.com>2018-07-04 16:33:08 +0100
commitf4838b44668059e0f74df8b4153c3ff9fe056238 (patch)
treef326aef2f50af492e5c455cca73e157932079f30 /wa/utils
parent5231bbcf713f15c41c88b37d40db78b75a0586b8 (diff)
utils/android: Fix typo in variable assignment
Diffstat (limited to 'wa/utils')
-rw-r--r--wa/utils/android.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wa/utils/android.py b/wa/utils/android.py
index 9a0c4c49..d1b59394 100644
--- a/wa/utils/android.py
+++ b/wa/utils/android.py
@@ -18,7 +18,7 @@ class LogcatEvent(object):
def __init__(self, timestamp, pid, tid, level, tag, message):
self.timestamp = timestamp
self.pid = pid
- self.tid = pid
+ self.tid = tid
self.level = level
self.tag = tag
self.message = message