summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultShutdown.c
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-05 14:58:55 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-05 14:58:55 +0000
commit7429addb5b7f80c1035b59afa239996ff1a58c65 (patch)
tree1ba6dde297325a705161420eacd2a2151db10fa5 /src/main/CactusDefaultShutdown.c
parent295247798ad3e1ef841ac7e04d219ac3cb146e8b (diff)
Adding a const qualifier to the 'cGH *' argument of some flesh routines
and for I/O method registration. You will also need to update the I/O thorns which I will commit changes to now. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2452 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultShutdown.c')
-rw-r--r--src/main/CactusDefaultShutdown.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/CactusDefaultShutdown.c b/src/main/CactusDefaultShutdown.c
index 69382106..024bb7f8 100644
--- a/src/main/CactusDefaultShutdown.c
+++ b/src/main/CactusDefaultShutdown.c
@@ -9,11 +9,9 @@
#include <stdio.h>
-#include "cctk.h"
-
#include "cctk_Flesh.h"
-
#include "cctk_Comm.h"
+#include "CactusMainDefaults.h"
#ifdef CCTK_MPI
#include "mpi.h"
@@ -65,7 +63,8 @@ extern char MPI_Active;
@@*/
int CactusDefaultShutdown(tFleshConfig *config)
{
- int myproc,conv_level;
+ int myproc;
+ unsigned int conv_level;
myproc = CCTK_MyProc(config->GH[0]);