tsimulation.c: remove extra newline character - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
(HTM) git clone git://src.adamsgaard.dk/cngf-pf
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 4c797cb49114fa10a0b705054ab3506256268c7d
(DIR) parent 922cb8962b4ba6ab722a77e976e46d140a45b8fd
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Mon, 30 Aug 2021 12:35:44 +0200
simulation.c: remove extra newline character
Diffstat:
M simulation.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/simulation.c b/simulation.c
t@@ -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