From 5908f2af0697c2be0467b4a83e783d5155992f05 Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 6 Jun 2018 20:54:42 +0200 Subject: [PATCH] json: Fixing the build Signed-off-by: David Shah --- frontend/json/jsonparse.cc | 4 ++-- frontend/json/jsonparse.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 diff --git a/frontend/json/jsonparse.h b/frontend/json/jsonparse.h index 12bf6dcd..6b444be9 100644 --- a/frontend/json/jsonparse.h +++ b/frontend/json/jsonparse.h @@ -24,6 +24,6 @@ #include #include "design.h" -extern void parse_json_file(std::istream *&, std::string &, Design *); +extern void parse_json_file(std::istream *&, std::string , Design *); #endif