summaryrefslogtreecommitdiff
path: root/src/main/GHExtensions.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 20:50:59 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 20:50:59 +0000
commitd475e8040a76eb7776eb5ed8f3f3edc0f417f6c7 (patch)
treee377c6a035918a2ef81c2655946a11b27513e253 /src/main/GHExtensions.c
parent1de5cce82d9fac333fba971bd5c19547c4d22abe (diff)
Removed tabs from files.
Added @version lines to various header files. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1170 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/GHExtensions.c')
-rw-r--r--src/main/GHExtensions.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/GHExtensions.c b/src/main/GHExtensions.c
index c61679eb..87a1c737 100644
--- a/src/main/GHExtensions.c
+++ b/src/main/GHExtensions.c
@@ -19,7 +19,7 @@
#include "StoreHandledData.h"
#include "cctk_WarnLevel.h"
-static char *rcsid = "$Id$";
+static char *rcsid = "$Header$";
/* Local data holding info on extensions..*/
@@ -146,7 +146,7 @@ int CCTK_RegisterGHExtension(const char *name)
@@*/
int CCTK_RegisterGHExtensionSetupGH(int handle,
- void *(*func)(tFleshConfig *, int, cGH *))
+ void *(*func)(tFleshConfig *, int, cGH *))
{
int return_code;
struct GHExtension *extension;
@@ -259,8 +259,8 @@ int CCTK_RegisterGHExtensionrfrTraverseGH(int handle, int (*func)(cGH *, int))
@@*/
int CCTKi_SetupGHExtensions(tFleshConfig *config,
- int convergence_level,
- cGH *GH)
+ int convergence_level,
+ cGH *GH)
{
int return_code;
int handle;
@@ -275,11 +275,11 @@ int CCTKi_SetupGHExtensions(tFleshConfig *config,
{
for(handle = 0; handle < num_extensions; handle++)
{
- /* Call the SetupGH routines for each extension. */
- extension = (struct GHExtension *)Util_GetHandledData(GHExtensions, handle);
- GH->extensions[handle] = extension->SetupGH(config,
- convergence_level,
- GH);
+ /* Call the SetupGH routines for each extension. */
+ extension = (struct GHExtension *)Util_GetHandledData(GHExtensions, handle);
+ GH->extensions[handle] = extension->SetupGH(config,
+ convergence_level,
+ GH);
}
return_code = 0;
}