aboutsummaryrefslogtreecommitdiff
path: root/src/StaticBoundary.c
diff options
context:
space:
mode:
authorrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-04-02 22:18:53 +0000
committerrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-04-02 22:18:53 +0000
commit7b4051115a05ee93eb77d90187a4b9fc7a83a137 (patch)
tree992fa738bc856864b448c93206214941273e6b4e /src/StaticBoundary.c
parente30e3eadbb31794a83e6dc8c571e8bcb91335a96 (diff)
Changing warning level for bad table handle from 3 to 5, since a
handle of -1 is often used to get default values of parameters. Fixed checking of valid bc_name in Boundary_SelectedGVs(). Fixes CactusWave/1459. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@217 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/StaticBoundary.c')
-rw-r--r--src/StaticBoundary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StaticBoundary.c b/src/StaticBoundary.c
index 4c4abbe..79027c5 100644
--- a/src/StaticBoundary.c
+++ b/src/StaticBoundary.c
@@ -138,7 +138,7 @@ int BndStatic(const cGH *GH, int num_vars, int *vars, int *faces, int *tables)
err = Util_TableGetIntArray(tables[i], gdim, stencil, "STENCIL WIDTH");
if (err == UTIL_ERROR_BAD_HANDLE)
{
- CCTK_VWarn(3, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn(5, __LINE__, __FILE__, CCTK_THORNSTRING,
"Invalid table handle passed for Static boundary "
"conditions for %s. Using all default values.",
CCTK_VarName(vars[i]));