From: José Fonseca Date: Mon, 24 Jun 2013 13:45:49 +0000 (+0100) Subject: tools/trace: Fix syntax. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a3d75db02224aa82fe8a42680c2e37d9a69699f1;p=mesa.git tools/trace: Fix syntax. Cleaned/commented up the code, but forgot to actually test before commiting... --- diff --git a/src/gallium/tools/trace/dump_state.py b/src/gallium/tools/trace/dump_state.py index 60309a392d4..f7ac76935e5 100755 --- a/src/gallium/tools/trace/dump_state.py +++ b/src/gallium/tools/trace/dump_state.py @@ -62,7 +62,7 @@ def serialize(obj): if crc32 < 0: crc32 += 0x100000000 return 'blob(size=%u,crc32=0x%08x)' % (len(obj), crc32) - if True + if True: # Dump blobs as an array of 16byte hexadecimals res = [] for i in range(0, len(obj), 16):