mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 06:56:46 +00:00
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:
parent
0235ad6d03
commit
0aea5f29e3
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue