commit 4c797cb49114fa10a0b705054ab3506256268c7d
parent 922cb8962b4ba6ab722a77e976e46d140a45b8fd
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Mon, 30 Aug 2021 12:35:44 +0200
simulation.c: remove extra newline character
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/simulation.c b/simulation.c
@@ -550,7 +550,7 @@ compute_effective_stress(struct simulation *sim)
/ 2.0);
/* sim->sigma_n_eff[i] = sim->sigma_n[i] - sim->p_f_ghost[i + 1]; */
if (sim->sigma_n_eff[i] < 0)
- warnx("%s: sigma_n_eff[%d] is negative with value %g\n",
+ warnx("%s: sigma_n_eff[%d] is negative with value %g",
__func__, i, sim->sigma_n_eff[i]);
}
else