forked from qt-creator/qt-creator
Dumper: Fix syntax error
Change-Id: I8e611b1cb358872d9e0c7302ed8a4d3e0b7d9f3c Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
e8a5dcee49
commit
5872c60a45
@@ -3400,7 +3400,7 @@ class DumperBase:
|
|||||||
return res
|
return res
|
||||||
return thing
|
return thing
|
||||||
if len(fields) != len(result):
|
if len(fields) != len(result):
|
||||||
error('STRUCT ERROR: %s %s' (fields, result))
|
error('STRUCT ERROR: %s %s' % (fields, result))
|
||||||
return tuple(map(structFixer, fields, result))
|
return tuple(map(structFixer, fields, result))
|
||||||
|
|
||||||
def checkPointer(self, p, align = 1):
|
def checkPointer(self, p, align = 1):
|
||||||
|
Reference in New Issue
Block a user