coreanalyzer: fix rtio_log message extraction.

Fixes #550.
release-1
whitequark 2016-09-14 10:18:00 +00:00 committed by Sebastien Bourdeauducq
parent 6150ab8509
commit 3c8a7df913
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ def _extract_log_chars(data):
n = data >> 24
data = (data << 8) & 0xffffffff
if not n:
return r
continue
r += chr(n)
return r