Skip to content

Commit

Permalink
Fixed alignment for some of the utf-8
Browse files Browse the repository at this point in the history
  • Loading branch information
scharlton2 committed Apr 17, 2024
1 parent 8a1cdae commit 5703a3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2229,7 +2229,7 @@ print_totals(void)
output_msg(sformatf("%35s%3.0f%7s%i\n",
"Specific Conductance (uS/cm, ", tc_x, "oC) = ", (int) SC));
#else
output_msg(sformatf("%35s%3.0f%7s%i\n",
output_msg(sformatf("%36s%3.0f%7s%i\n",
"Specific Conductance (µS/cm, ", tc_x, "°C) = ", (int) SC));
#endif
}
Expand All @@ -2240,7 +2240,7 @@ print_totals(void)
#ifdef NO_UTF8_ENCODING
output_msg(sformatf("%45s%9.5f", "Density (g/cm3) = ",
#else
output_msg(sformatf("%45s%9.5f", "Density (g/cm³) = ",
output_msg(sformatf("%46s%9.5f", "Density (g/cm³) = ",
#endif
(double) dens));
if (state == INITIAL_SOLUTION && use.Get_solution_ptr()->Get_initial_data()->Get_calc_density())
Expand Down Expand Up @@ -2295,7 +2295,7 @@ print_totals(void)
#ifdef NO_UTF8_ENCODING
output_msg(sformatf("%45s%6.2f\n", "Temperature (oC) = ",
#else
output_msg(sformatf("%45s%6.2f\n", "Temperature (°C) = ",
output_msg(sformatf("%46s%6.2f\n", "Temperature (°C) = ",
#endif
(double) tc_x));

Expand Down

0 comments on commit 5703a3b

Please # to comment.