aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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