Skip to content

Commit 4ac8ea0

Browse files
committed
Add missing space to describe_rr_node
Signed-off-by: Jeff Goeders <[email protected]>
1 parent 0994698 commit 4ac8ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/route/rr_graph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2464,7 +2464,7 @@ std::string describe_rr_node(int inode) {
24642464
msg += vtr::string_fmt(" fan-in: %d", rr_graph.node_fan_in(RRNodeId(inode)));
24652465
msg += vtr::string_fmt(" fan-out: %d", rr_node.num_edges());
24662466

2467-
msg += rr_graph.node_coordinate_to_string(RRNodeId(inode));
2467+
msg += " " + rr_graph.node_coordinate_to_string(RRNodeId(inode));
24682468

24692469
return msg;
24702470
}

0 commit comments

Comments
 (0)