coreanalyzer: fix rtio_log message extraction.

Fixes #550.
This commit is contained in:
whitequark 2016-09-14 10:18:00 +00:00
parent c7c8ad126f
commit 494cfca41c
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