We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aed5bf commit 54a23f3Copy full SHA for 54a23f3
src/print.cpp
@@ -1636,9 +1636,9 @@ print_species(void)
1636
(double)species_list[i].s->lg));
1637
//if (species_list[i].s->logk[vm_tc] || !strcmp(species_list[i].s->name, "H+"))
1638
if (species_list[i].s->logk[vm_tc] || species_list[i].s == s_hplus)
1639
- output_msg(sformatf("%10.2f", (double)species_list[i].s->logk[vm_tc]));
+ output_msg(sformatf("%10.2f\n", (double)species_list[i].s->logk[vm_tc]));
1640
else
1641
- output_msg(sformatf(" (0) "));
+ output_msg(sformatf(" (0) \n"));
1642
#endif
1643
}
1644
0 commit comments