Open lukasm91 opened 7 years ago
I cannot compile the library due to the error above.
Seems like the variable k in scripts/ud_opcode, in the function pprint may be a float.
k
scripts/ud_opcode
pprint
I can resolve the issue by replacing self.log("%s |-<%02x> %s" % (indent, k, e)) with self.log("%s |-<%02x> %s" % (indent, int(k), e))
self.log("%s |-<%02x> %s" % (indent, k, e))
self.log("%s |-<%02x> %s" % (indent, int(k), e))
Duplicate of #120
I cannot compile the library due to the error above.
Seems like the variable
k
inscripts/ud_opcode
, in the functionpprint
may be a float.I can resolve the issue by replacing
self.log("%s |-<%02x> %s" % (indent, k, e))
withself.log("%s |-<%02x> %s" % (indent, int(k), e))