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:
Larry Doolittle 2008-05-20 11:02:52 -07:00 committed by Stephen Williams
parent 5ec3b590bf
commit 6a9c5d8f7e
1 changed files with 1 additions and 1 deletions

View File

@ -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;