[Commits] [svn:einsteintoolkit] AHFinder/trunk/src/ (Rev. 405)

schnetter at cct.lsu.edu schnetter at cct.lsu.edu
Thu Jan 20 15:45:45 CST 2011


User: eschnett
Date: 2011/01/20 03:45 PM

Modified:
 /trunk/src/
  Startup.c

Log:
 Correct function signature

File Changes:

Directory: /trunk/src/
======================

File [modified]: Startup.c
Delta lines: +4 -2
===================================================================
--- trunk/src/Startup.c	2010-11-21 03:28:56 UTC (rev 404)
+++ trunk/src/Startup.c	2011-01-20 21:45:44 UTC (rev 405)
@@ -19,7 +19,7 @@
 /********************************************************************
  ********************    External Routines   ************************
  ********************************************************************/
-void AHFinder_Startup (void);
+int AHFinder_Startup (void);
 
  /*@@
    @routine   AHfinder_Startup
@@ -32,12 +32,14 @@
    @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;
 }
 
 



More information about the Commits mailing list