aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@1d96b42b-98df-4a6a-9d84-1b24288d4588>2007-02-28 03:14:13 +0000
committerschnetter <schnetter@1d96b42b-98df-4a6a-9d84-1b24288d4588>2007-02-28 03:14:13 +0000
commit3e7f3e0ea0627182886f506b1486c94c012dfbfd (patch)
treec3d7bb7c133678720d4826153b49028dcf0a02a3
parentde3d1c3108c51d68dafaa7e318cd056437ffa6c3 (diff)
Make EllPETSc_Register return void instead of int, since it is
scheduled at basegrid. git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllPETSc/trunk@96 1d96b42b-98df-4a6a-9d84-1b24288d4588
-rw-r--r--src/Startup.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Startup.c b/src/Startup.c
index bdadc2c..9537d39 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -24,13 +24,11 @@ void petsc_flat(cGH *GH, int *FieldIndex, int *MIndex, int *NIndex,
This routine registers petsc_confmetric under the name "petsc" for
the class of elliptic equations "LinConfMetric" */
-int EllPETSc_Register(cGH *GH)
+void EllPETSc_Register(cGH *GH)
{
DECLARE_CCTK_PARAMETERS
Ell_RegisterSolver(petsc_confmetric,"petsc","Ell_LinConfMetric");
Ell_RegisterSolver(petsc_metric,"petsc","Ell_LinMetric");
Ell_RegisterSolver(petsc_flat,"petsc","Ell_LinFlat");
-
- return 0;
}