remove extra space in formating

This commit is contained in:
Kamyar Mohajerani 2022-09-13 17:14:56 -04:00 committed by Lofty
parent bc1e579483
commit 69787f1906
1 changed files with 2 additions and 2 deletions

View File

@ -289,14 +289,14 @@ struct statdata_t
if (tech == "xilinx") if (tech == "xilinx")
{ {
log(",\n"); log(",\n");
log(" \"estimated_num_lc\": %10u", estimate_xilinx_lc()); log(" \"estimated_num_lc\": %u", estimate_xilinx_lc());
} }
if (tech == "cmos") if (tech == "cmos")
{ {
bool tran_cnt_exact = true; bool tran_cnt_exact = true;
unsigned int tran_cnt = cmos_transistor_count(&tran_cnt_exact); unsigned int tran_cnt = cmos_transistor_count(&tran_cnt_exact);
log(",\n"); 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("\n");
log(" }"); log(" }");