aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c b/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
index 1f63a03..2c1582c 100644
--- a/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
+++ b/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
@@ -840,16 +840,20 @@ int ibndry;
then CCTK_VWarn(WARNING_MSG_SEVERITY_LEVEL,
__LINE__, __FILE__, CCTK_THORNSTRING,
"\n"
-" CCTK_InterpLocalUniform(): warning: setting\n"
-" boundary_off_centering_tolerance[%d] == 0.0\n"
-" and\n"
-" boundary_extrapolation_tolerance[%d] > 0.0\n"
-" is almost certainly a mistake\n"
-" (the boundary_extrapolation_tolerance[%d]\n"
-" setting will have no effect because of the\n"
-" boundary_off_centering_tolerance[%d] setting)"
+" CCTK_InterpLocalUniform():\n"
+" warning: setting boundary_off_centering_tolerance[%d] == 0.0\n"
+" and boundary_extrapolation_tolerance[%d] == %g > 0.0\n"
+" is almost certainly a mistake\n"
+" (the boundary_extrapolation_tolerance[%d] == %g\n"
+" setting will have no effect because of the\n"
+" boundary_off_centering_tolerance[%d] == 0.0 setting)"
,
- ibndry, ibndry, ibndry, ibndry);
+ ibndry,
+ ibndry,
+ (double) boundary_extrapolation_tolerance[ibndry],
+ ibndry,
+ (double) boundary_extrapolation_tolerance[ibndry],
+ ibndry);
}
}