summaryrefslogtreecommitdiff
path: root/src/comm/CactusDefaultComm.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-15 09:03:57 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-15 09:03:57 +0000
commit8970cf2d062b5650cd2ae764ded94769d8d027a7 (patch)
treea73838e0935bca6e4799a561241e4dfc6ba12e29 /src/comm/CactusDefaultComm.c
parent73c042453a8491a59c1e44965ec2a62440db04b8 (diff)
Double -> CCTK_REAL
REAL -> CCTK_REAL POINTER -> CCTK_POINTER VARIABLE_REAL -> CCTK_VARIABLE_REAL (etc) GH->iteration is now an int (not an unsigned long int) git-svn-id: http://svn.cactuscode.org/flesh/trunk@551 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/comm/CactusDefaultComm.c')
-rw-r--r--src/comm/CactusDefaultComm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comm/CactusDefaultComm.c b/src/comm/CactusDefaultComm.c
index cca3d432..edc2f8bb 100644
--- a/src/comm/CactusDefaultComm.c
+++ b/src/comm/CactusDefaultComm.c
@@ -91,9 +91,9 @@ cGH *CactusDefaultSetupGH(tFleshConfig *config, int convergence_level)
thisGH->lower_bound = (int *)malloc(thisGH->dim*sizeof(int));
thisGH->upper_bound = (int *)malloc(thisGH->dim*sizeof(int));
thisGH->bbox = (int *)malloc(2*thisGH->dim*sizeof(int));
- thisGH->delta_space = (Double *)malloc(thisGH->dim*sizeof(Double));
+ thisGH->delta_space = (CCTK_REAL *)malloc(thisGH->dim*sizeof(CCTK_REAL));
/* FIXME : Next line goes when coords are done properly */
- thisGH->origin_space = (Double *)malloc(thisGH->dim*sizeof(Double));
+ thisGH->origin_space = (CCTK_REAL *)malloc(thisGH->dim*sizeof(CCTK_REAL));
thisGH->delta_time = 1;
thisGH->levfac = 1;