aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreschnett <eschnett@89daf98e-ef62-4674-b946-b8ff9de2216c>2011-01-20 21:45:44 +0000
committereschnett <eschnett@89daf98e-ef62-4674-b946-b8ff9de2216c>2011-01-20 21:45:44 +0000
commitc9a154600b8179e32a7ab762b16f8497bc0605be (patch)
treeb0f9fde70c508d03c381bf99397182a2b8c3e45d
parent3597ae6abaf54fecc3ae653757514e26686358db (diff)
Correct function signature
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinder/trunk@405 89daf98e-ef62-4674-b946-b8ff9de2216c
-rw-r--r--src/Startup.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Startup.c b/src/Startup.c
index de43bf6..bb556db 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -19,7 +19,7 @@ int AHFinder_TimeForOutput (const cGH *GH, int vindex);
/********************************************************************
******************** External Routines ************************
********************************************************************/
-void AHFinder_Startup (void);
+int AHFinder_Startup (void);
/*@@
@routine AHfinder_Startup
@@ -32,12 +32,14 @@ void AHFinder_Startup (void);
@enddesc
@calls CCTK_RegisterGHExtensionSetupGH
@@*/
-void AHFinder_Startup (void)
+int AHFinder_Startup (void)
{
int handle;
handle = CCTK_RegisterIOMethod ("AHFinder");
CCTK_RegisterIOMethodTimeToOutput (handle, AHFinder_TimeForOutput);
+
+ return 0;
}