aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@fa3da13c-9f13-4301-a575-cf5b8c5e1907>2002-01-04 16:26:23 +0000
committertradke <tradke@fa3da13c-9f13-4301-a575-cf5b8c5e1907>2002-01-04 16:26:23 +0000
commit0a9b479a0080c4de8f30fb453b867cb1180be767 (patch)
treec54acba74cdf5002e9e1390a881026ad4ceb3483
parentebd18d9eb87ebc3401a93c8a95457b025ee43e36 (diff)
Fixed int <-> CCTK_INT type problems to make it compiling on T3E.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllSOR/trunk@75 fa3da13c-9f13-4301-a575-cf5b8c5e1907
-rw-r--r--src/ConfMetric.c3
-rw-r--r--src/Flat.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ConfMetric.c b/src/ConfMetric.c
index be9b0d2..dad8580 100644
--- a/src/ConfMetric.c
+++ b/src/ConfMetric.c
@@ -87,7 +87,8 @@ int SORConfMetric3D(cGH *GH, int *MetricPsiI, int conformal,
CCTK_REAL tol;
/* Iteration / stepping variables */
- int sorit, maxit;
+ int sorit;
+ CCTK_INT maxit;
int i,j,k;
int nxyz;
diff --git a/src/Flat.c b/src/Flat.c
index 6fcbb0e..293f71c 100644
--- a/src/Flat.c
+++ b/src/Flat.c
@@ -51,7 +51,8 @@ int SORFlat3D(cGH *GH, int FieldIndex, int MIndex, int NIndex,
CCTK_REAL tol;
/* Iteration and stepping variables */
- int sorit, maxit;
+ int sorit;
+ CCTK_INT maxit;
int i, j, k;
int origin_sign;