Use standard for printing uint64_t
Ugly, but pedantically correct according to c99 7.8.1. Maybe not as ugly as the compile-time warning it replaces.
This commit is contained in:
parent
5ec3b590bf
commit
6a9c5d8f7e
|
|
@ -288,7 +288,7 @@ void show_statement(ivl_statement_t net, unsigned ind)
|
|||
break;
|
||||
|
||||
case IVL_ST_DELAY:
|
||||
fprintf(out, "%*s#%llu\n", ind, "", ivl_stmt_delay_val(net));
|
||||
fprintf(out, "%*s#%" PRIu64 "\n", ind, "", ivl_stmt_delay_val(net));
|
||||
show_statement(ivl_stmt_sub_stmt(net), ind+2);
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue