3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-24 14:53:42 +00:00

Do not the 'z' modifier in format string (another win32 fix)

This commit is contained in:
Clifford Wolf 2014-10-11 11:42:08 +02:00
parent 8263f6a74a
commit 35fbc0b35f
5 changed files with 9 additions and 9 deletions

View file

@ -239,7 +239,7 @@ struct FsmExpand
if (merged_set.size() > 0 && !already_optimized)
FsmData::optimize_fsm(fsm_cell, module);
log(" merged %zd cells into FSM.\n", merged_set.size());
log(" merged %d cells into FSM.\n", GetSize(merged_set));
}
};