aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@6a38eb6e-646e-4a02-a296-d141613ad6c4>2009-09-29 14:41:50 +0000
committerknarf <knarf@6a38eb6e-646e-4a02-a296-d141613ad6c4>2009-09-29 14:41:50 +0000
commitf4c23c0136c5d3b23aa412526525095b1bc2584d (patch)
tree8a5fbed49147bcf0539b6adae2afb8405d1ef07c
parentf67c660b384ba5c6c38dead85c7544fab05476ba (diff)
change CCTK_VarName to CCTK_FullName in some Warnings
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@298 6a38eb6e-646e-4a02-a296-d141613ad6c4
-rw-r--r--src/StaticBoundary.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/StaticBoundary.c b/src/StaticBoundary.c
index 3c0f840..afdac6b 100644
--- a/src/StaticBoundary.c
+++ b/src/StaticBoundary.c
@@ -123,7 +123,7 @@ CCTK_INT BndStatic(const cGH *GH, CCTK_INT num_vars, CCTK_INT *vars,
"Faces specification %d for Static boundary conditions on "
"%s is not implemented yet. "
"Applying Static bcs to all (external) faces.", (int)faces[i],
- CCTK_VarName(vars[i]));
+ CCTK_FullName(vars[i]));
}
dir = 0;
@@ -148,13 +148,13 @@ CCTK_INT BndStatic(const cGH *GH, CCTK_INT num_vars, CCTK_INT *vars,
CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,
"Error %d when reading boundary width array from table "
"for %s",
- err, CCTK_VarName(vars[i]));
+ err, CCTK_FullName(vars[i]));
return -21;
} else if (err!=2*gdim)
{
CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,
"Boundary width array for %s has %d elements, but %d "
- "expected", CCTK_VarName(vars[i]), err, 2*gdim);
+ "expected", CCTK_FullName(vars[i]), err, 2*gdim);
return -22;
}
} else