Skip to content
Snippets Groups Projects
Commit 3b2f73dd authored by Andrew McCreight's avatar Andrew McCreight
Browse files

Bug 1828994 - Fix blank line printing in block_analyzer.py. r=pbone

parent 2c574db4
No related branches found
No related tags found
No related merge requests found
......@@ -173,15 +173,14 @@ def show_referrers(args, blocks, stacks, block):
"0x{} size = {} bytes".format(blocks[r].addr, blocks[r].req_size)
)
plural = "s" if len(referrers[r]) > 1 else ""
sys.stdout.write(
print(
" at byte offset"
+ plural
+ " "
+ (", ".join(str(x) for x in referrers[r]))
)
print()
print_trace_segment(args, stacks, blocks[r])
print()
print("")
if args.chain_reports:
if len(referrers) == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment