From cbaffedac724acd602a243925b179dedee2f24a1 Mon Sep 17 00:00:00 2001 From: lanfer Date: Thu, 16 Sep 1999 09:38:09 +0000 Subject: taking out dereferencing git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllPETSc/trunk@16 1d96b42b-98df-4a6a-9d84-1b24288d4588 --- src/petsc_confmetric_solver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/petsc_confmetric_solver.c b/src/petsc_confmetric_solver.c index adefb5f..55f5e7a 100644 --- a/src/petsc_confmetric_solver.c +++ b/src/petsc_confmetric_solver.c @@ -224,11 +224,11 @@ void petsc_confmetric_solver(cGH *GH, int *MetricPsiI, int MetricPsiISize, /* if we have a negative index, this GF is not needed, there for don't even look for it. when index positive, set flag Mstorage=1, dito for N */ - if (*MIndex>=0) { + if (MIndex>=0) { Mlin = (CCTK_REAL*) CCTK_VarDataPtrI(GH,0,MIndex); Mstorage = 1; } - if (*NIndex>=0) { + if (NIndex>=0) { Nlin = (CCTK_REAL*) CCTK_VarDataPtrI(GH,0,NIndex); Nstorage = 1; } -- cgit v1.2.3