From 69787f19060a34dc6946edd67ff4b8f31634642f Mon Sep 17 00:00:00 2001 From: Kamyar Mohajerani Date: Tue, 13 Sep 2022 17:14:56 -0400 Subject: [PATCH] remove extra space in formating --- passes/cmds/stat.cc | 4 ++-- 1 file 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(" }");