aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@1c20744c-e24a-42ec-9533-f5004cb800e5>2003-05-06 17:47:15 +0000
committertradke <tradke@1c20744c-e24a-42ec-9533-f5004cb800e5>2003-05-06 17:47:15 +0000
commit1f9128712d8942a840fea9a625c747a062541c14 (patch)
tree5fd1adfd3a40263caacdbc88060612adca041c90
parent682c7c4c748615d3c02ceef443ae2428cb2d4d4d (diff)
If, in a multiprocessor case, a point couldn't be mapped onto a processor
return CCTK_ERROR_INTERP_POINT_OUTSIDE rather than UTIL_ERROR_BAD_INPUT. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHInterp/trunk@54 1c20744c-e24a-42ec-9533-f5004cb800e5
-rw-r--r--src/InterpGridArrays.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/InterpGridArrays.c b/src/InterpGridArrays.c
index 3c95211..1fb3c1d 100644
--- a/src/InterpGridArrays.c
+++ b/src/InterpGridArrays.c
@@ -614,7 +614,7 @@ int PUGHInterp_InterpGridArrays (const cGH *GH,
sprintf (msg, "%s]", msg);
CCTK_WARN (1, msg);
free (msg);
- retval = UTIL_ERROR_BAD_INPUT;
+ retval = CCTK_ERROR_INTERP_POINT_OUTSIDE;
}
}
}