Skip to content

Commit 54a23f3

Browse files
committed
Added missing newlines(\n) to distribution of species section
1 parent 7aed5bf commit 54a23f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/print.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1636,9 +1636,9 @@ print_species(void)
16361636
(double)species_list[i].s->lg));
16371637
//if (species_list[i].s->logk[vm_tc] || !strcmp(species_list[i].s->name, "H+"))
16381638
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]));
1639+
output_msg(sformatf("%10.2f\n", (double)species_list[i].s->logk[vm_tc]));
16401640
else
1641-
output_msg(sformatf(" (0) "));
1641+
output_msg(sformatf(" (0) \n"));
16421642
#endif
16431643
}
16441644
}

0 commit comments

Comments
 (0)