diff options
author | David Shah <davey1576@gmail.com> | 2018-08-01 20:11:36 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-08-01 20:11:36 +0200 |
commit | 1d6ec0fb8c1c2e68e7f21d724a3e30f7fcab4775 (patch) | |
tree | 88322a7a2360a59303ed1775d6830ac7bbebc992 /json | |
parent | 9c19c59d62b236c8b95da3010b357fbda55bdd77 (diff) | |
download | nextpnr-1d6ec0fb8c1c2e68e7f21d724a3e30f7fcab4775.tar.gz nextpnr-1d6ec0fb8c1c2e68e7f21d724a3e30f7fcab4775.tar.bz2 nextpnr-1d6ec0fb8c1c2e68e7f21d724a3e30f7fcab4775.zip |
json: Fix message for 1'bx values
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'json')
-rw-r--r-- | json/jsonparse.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/json/jsonparse.cc b/json/jsonparse.cc index a0a4e8d0..89c2b8d9 100644 --- a/json/jsonparse.cc +++ b/json/jsonparse.cc @@ -462,9 +462,8 @@ void json_import_ports(Context *ctx, const string &modname, const std::vector<Id ground_net(ctx, net.get()); log_info(" Floating wire node value, " - "\'%s\' of port \'%s\' " - "in cell \'%s\' of module \'%s\'\n, converted to zero driver", - wire_node->data_string.c_str(), port_name.c_str(), obj_name.c_str(), modname.c_str()); + "'%s' on '%s'/'%s', converted to zero driver\n", + this_port.name.c_str(ctx), modname.c_str(), obj_name.c_str()); } else log_error(" Unknown fixed type wire node " |