diff options
author | Kamyar Mohajerani <kammoh@gmail.com> | 2022-09-13 17:14:56 -0400 |
---|---|---|
committer | Lofty <dan.ravensloft@gmail.com> | 2022-09-22 15:46:36 +0100 |
commit | 69787f19060a34dc6946edd67ff4b8f31634642f (patch) | |
tree | 2b2b3d1add6b7b703050532d3749afc3941533d5 | |
parent | bc1e579483a0996940c1c17e4c155119164bdc8b (diff) | |
download | yosys-69787f19060a34dc6946edd67ff4b8f31634642f.tar.gz yosys-69787f19060a34dc6946edd67ff4b8f31634642f.tar.bz2 yosys-69787f19060a34dc6946edd67ff4b8f31634642f.zip |
remove extra space in formating
-rw-r--r-- | passes/cmds/stat.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc index 533ac97ee..a998ab8e7 100644 --- a/passes/cmds/stat.cc +++ b/passes/cmds/stat.cc @@ -289,14 +289,14 @@ struct statdata_t if (tech == "xilinx") { log(",\n"); - log(" \"estimated_num_lc\": %10u", estimate_xilinx_lc()); + log(" \"estimated_num_lc\": %u", estimate_xilinx_lc()); } if (tech == "cmos") { bool tran_cnt_exact = true; unsigned int tran_cnt = cmos_transistor_count(&tran_cnt_exact); log(",\n"); - log(" \"estimated_num_transistors\": \"%10u%s\"", tran_cnt, tran_cnt_exact ? "" : "+"); + log(" \"estimated_num_transistors\": \"%u%s\"", tran_cnt, tran_cnt_exact ? "" : "+"); } log("\n"); log(" }"); |