aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@ff385933-4943-42dc-877b-ffc776028de6>2001-05-28 13:34:02 +0000
committertradke <tradke@ff385933-4943-42dc-877b-ffc776028de6>2001-05-28 13:34:02 +0000
commit5a56bd45c50b74c6ebf15efdfea5f0f7a3d9aa05 (patch)
treeed66dc8e3f36aa6a47a10f5b6069fadf2bd1baf4
parent3f44a94319cdd9ee4901a3051c80b5817fba4811 (diff)
cGH pointer cannot be const.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/NaNChecker/trunk@12 ff385933-4943-42dc-877b-ffc776028de6
-rw-r--r--src/NaNCheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NaNCheck.c b/src/NaNCheck.c
index a688671..2d2a9e8 100644
--- a/src/NaNCheck.c
+++ b/src/NaNCheck.c
@@ -302,7 +302,7 @@ static void PrintWarning (const char *error_type,
static void NaNCheck (int vindex, const char *optstring, void *_GH)
{
DECLARE_CCTK_PARAMETERS
- const cGH *GH;
+ cGH *GH;
int i, fp_type, nans_found;
int vtype, gtype, gindex, nelems;
char *fullname;