Skip to content

Commit d4ea405

Browse files
emacdo12jeanlego
emacdo12
authored andcommitted
fixed error, changed %s to %d
1 parent 3807432 commit d4ea405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ODIN_II/SRC/netlist_create_from_ast.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5183,7 +5183,7 @@ ast_node_t* resolve_top_parameters_defined_by_parameters(ast_node_t* node, sc_hi
51835183
count++;
51845184

51855185
if (count > RECURSIVE_LIMIT) {
5186-
error_message(NETLIST, node->loc, "Exceeds recursion count limit of %s", RECURSIVE_LIMIT);
5186+
error_message(NETLIST, node->loc, "Exceeds recursion count limit of %d", RECURSIVE_LIMIT);
51875187
}
51885188

51895189
if (node->type == IDENTIFIERS) {

0 commit comments

Comments
 (0)