aboutsummaryrefslogtreecommitdiff
path: root/src/RKCoefficients.c
diff options
context:
space:
mode:
authoreschnett <eschnett@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2011-01-21 03:14:15 +0000
committereschnett <eschnett@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2011-01-21 03:14:15 +0000
commit61a33fbee9c1b55997fe7f2e0b8c9c25f4bca9ba (patch)
treedcaa6ae57505eccbf0049355bc0ba570e865346d /src/RKCoefficients.c
parentb530d68aa224e23e1ae0b0629faa680678d99767 (diff)
Correct signatures of scheduled functions
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@144 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'src/RKCoefficients.c')
-rw-r--r--src/RKCoefficients.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/RKCoefficients.c b/src/RKCoefficients.c
index 57ac38a..36299c7 100644
--- a/src/RKCoefficients.c
+++ b/src/RKCoefficients.c
@@ -33,7 +33,7 @@ CCTK_FILEVERSION(CactusBase_MoL_RKCoefficients_c);
***************** Scheduled Routine Prototypes *********************
********************************************************************/
-int MoL_SetupRKCoefficients(CCTK_ARGUMENTS);
+void MoL_SetupRKCoefficients(CCTK_ARGUMENTS);
/********************************************************************
********************* Other Routine Prototypes *********************
@@ -64,7 +64,7 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS);
@@*/
-int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
+void MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
@@ -245,9 +245,6 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
CCTK_WARN(0, "RKCoefficients does not recognize the value "
"of Generic_Type");
}
-
- return 0;
-
}
/********************************************************************