aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrideout <rideout@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-08-18 17:13:30 +0000
committerrideout <rideout@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-08-18 17:13:30 +0000
commit97f6a31e46d9c507d2d42a2b533cf32fb9a00f47 (patch)
tree6dab477fd91c7c489468fd43114cf6a7c24f4037
parente1bda92b323dc19150290ec883e4e2e5b259628c (diff)
Fixed compiler warning about extra argument for CCTK_VWarn.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@173 df1f8a13-aa1d-4dd4-9681-27ded5b42416
-rw-r--r--src/Operator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Operator.c b/src/Operator.c
index d5037d0..6dad0ad 100644
--- a/src/Operator.c
+++ b/src/Operator.c
@@ -112,8 +112,8 @@ int LocalInterp_InterpLocalUniform (int num_dims,
{
CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
"Invalid value for option 'order' in interpolation "
- "parameter options table (must be CCTK_INT scalar value)",
- key);
+ "parameter options table "
+ "(must be CCTK_INT scalar value)");
}
}
else if (CCTK_Equals (key, "N_boundary_points_to_omit") ||