summaryrefslogtreecommitdiff
path: root/src/main/Coord.c
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-29 18:28:22 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-29 18:28:22 +0000
commit6f13e65ac8faf07a6d383839af68de0689710975 (patch)
treed1b1c459ccfe6d98c1c696c11b8331647c3932a9 /src/main/Coord.c
parent77cef78be91e797a171458e1b46f6c4f26dd9671 (diff)
Fixed wrong number of arguments in calls to CCTK_VWarn().
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2869 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Coord.c')
-rw-r--r--src/main/Coord.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/Coord.c b/src/main/Coord.c
index 689eae6e..7d3ac38e 100644
--- a/src/main/Coord.c
+++ b/src/main/Coord.c
@@ -456,7 +456,8 @@ int CCTK_CoordRegisterRange (cGH *GH,
if (coord_system->coords[vindex].listcomp)
{
CCTK_VWarn (3, __LINE__, __FILE__, "Cactus",
- "CCTK_CoordRange: Range already registered", systemname);
+ "CCTK_CoordRange: Range already registered for system '%s'",
+ systemname);
coord_system->coords[vindex].listcomp->lower = min;
coord_system->coords[vindex].listcomp->upper = max;
}
@@ -629,7 +630,7 @@ int CCTK_CoordRegisterRangePhysIndex (cGH *GH,
{
CCTK_VWarn (3, __LINE__, __FILE__, "Cactus",
"CCTK_CoordRegisterRangePhysIndex: "
- "Range already registered", systemname);
+ "Range already registered for system '%s'", systemname);
coord_system->coords[vindex].listphysi->lower = min;
coord_system->coords[vindex].listphysi->upper = max;
}