diff options
Diffstat (limited to 'frontend/json')
-rw-r--r-- | frontend/json/jsonparse.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/json/jsonparse.cc b/frontend/json/jsonparse.cc index 92590902..82874703 100644 --- a/frontend/json/jsonparse.cc +++ b/frontend/json/jsonparse.cc @@ -421,8 +421,8 @@ void json_import_ports(Design *design, const string &modname, // // Pick a name for this port if (is_bus) - this_port.name = - port_info.name.str() + "[" + std::to_string(index) + "]"; + this_port.name = port_info.name.str() + "[" + + std::to_string(index) + "]"; else this_port.name = port_info.name; this_port.type = port_info.type; |