aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2002-05-03 11:55:51 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2002-05-03 11:55:51 +0000
commit83cdd90c8807d3e101b085349590315cb79e795e (patch)
tree4c841680b60d8daa85dde46caeecd5dc81b03805
parent78603eb5beb1a94639853022da48a6c497227ef5 (diff)
Fixed warning message for slice center setup.
This closes PR CactusBase/980. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@160 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
-rw-r--r--src/Utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Utils.c b/src/Utils.c
index 6c01e76..8460b59 100644
--- a/src/Utils.c
+++ b/src/Utils.c
@@ -385,9 +385,9 @@ int IOUtil_2DPlanes (const cGH *GH,
'x' + (num_dims - dir - 1), (double) origin_phys[dir],
(double) lower_range[dir], (double) upper_range[dir]);
CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
- "IOUtil_2DPlanes: no 2D planes in %c-direction will be "
- "written for %dD variables with this slice center default",
- 'x' + (num_dims - dir - 1), num_dims);
+ "IOUtil_2DPlanes: no 2D planes spanning in this direction "
+ "will be written for %dD variables with this slice center ",
+ "default", num_dims);
slice_center[dir] = 0;
}
else