From 5908f2af0697c2be0467b4a83e783d5155992f05 Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 6 Jun 2018 20:54:42 +0200 Subject: json: Fixing the build Signed-off-by: David Shah --- frontend/json/jsonparse.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/json/jsonparse.cc') diff --git a/frontend/json/jsonparse.cc b/frontend/json/jsonparse.cc index 45edabad..0f8fb48c 100644 --- a/frontend/json/jsonparse.cc +++ b/frontend/json/jsonparse.cc @@ -377,7 +377,7 @@ void json_import_cell_ports(Design *design, string &modname, CellInfo *cell, log_error("JSON no connection match " "for port_direction \'%s\' of node \'%s\' " "in module \'%s\'\n", - port_name, cell->name.c_str(), modname.c_str()); + port_name.c_str(), cell->name.c_str(), modname.c_str()); assert(wire_group_node); @@ -546,7 +546,7 @@ void json_import_cell(Design *design, string modname, JsonNode *cell_node, param_node = cell_node->data_dict.at("parameters"); if (param_node->type != 'D') - log_error("JSON parameter list of \'%s\' is not a data dictionary\n", cell->name); + log_error("JSON parameter list of \'%s\' is not a data dictionary\n", cell->name.c_str()); // // Loop through all parameters, adding them into the -- cgit v1.2.3