From 0a9b479a0080c4de8f30fb453b867cb1180be767 Mon Sep 17 00:00:00 2001 From: tradke Date: Fri, 4 Jan 2002 16:26:23 +0000 Subject: 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 --- src/ConfMetric.c | 3 ++- src/Flat.c | 3 ++- 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; -- cgit v1.2.3