Skip to content

Commit ff3c252

Browse files
committed
Remove : after memory address
1 parent 3099762 commit ff3c252

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/FBDebugCommands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def isHeap(addr):
422422

423423
allocations = (addr for addr in pointers if isHeap(addr))
424424
for addr in allocations:
425-
print >>self.result, '0x{addr:x}: {path}'.format(addr=addr, path=pointers[addr])
425+
print >>self.result, '0x{addr:x} {path}'.format(addr=addr, path=pointers[addr])
426426
if not allocations:
427427
print >>self.result, "No heap addresses found"
428428

0 commit comments

Comments
 (0)