We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3099762 commit ff3c252Copy full SHA for ff3c252
commands/FBDebugCommands.py
@@ -422,7 +422,7 @@ def isHeap(addr):
422
423
allocations = (addr for addr in pointers if isHeap(addr))
424
for addr in allocations:
425
- print >>self.result, '0x{addr:x}: {path}'.format(addr=addr, path=pointers[addr])
+ print >>self.result, '0x{addr:x} {path}'.format(addr=addr, path=pointers[addr])
426
if not allocations:
427
print >>self.result, "No heap addresses found"
428
0 commit comments