Skip to content

Commit 8bbd7e9

Browse files
committed
Fix a syntax error in log printing of routing constraints
1 parent b9c8775 commit 8bbd7e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/base/user_route_constraints.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const RoutingScheme UserRouteConstraints::get_route_scheme_by_net_name(std::stri
4646
{
4747
VPR_FATAL_ERROR(VPR_ERROR_OTHER,
4848
"in get_route_scheme_by_net_name: no routing constraints exist for net name %s \n",
49-
net_name);
49+
net_name.c_str());
5050
}
5151

5252
RoutingScheme route_scheme;

0 commit comments

Comments
 (0)