debug-viewer; Store thread as long instead of int

On 64-bit platforms, the thread id can be over 2^32 so use a long
to handle it.
This commit is contained in:
Olivier Crête 2018-02-08 08:20:55 -07:00
parent 0235ad6d03
commit 0aea5f29e3

View file

@ -392,7 +392,7 @@ class LogLine (list):
# PID.
line[1] = int(line[1])
# Thread.
line[2] = int(line[2], 16)
line[2] = long(line[2], 16)
# Level (this is handled in LineCache).
line[3] = 0
# Line.