aboutsummaryrefslogtreecommitdiffstats
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/json/jsonparse.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/json/jsonparse.cc b/frontend/json/jsonparse.cc
index 56e6b1b6..91da07dd 100644
--- a/frontend/json/jsonparse.cc
+++ b/frontend/json/jsonparse.cc
@@ -331,8 +331,7 @@ void json_import_cell_attributes(Design *design, string &modname,
pId = param_node->data_dict_keys[param_id];
if (param->type == 'N') {
- cell->params[pId] = std::to_string(param_node->data_number);
- ;
+ cell->params[pId] = std::to_string(param->data_number);
} else if (param->type == 'S')
cell->params[pId] = param->data_string;
else