summaryrefslogtreecommitdiff
path: root/src/main/Coord.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-03-30 23:12:18 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-03-30 23:12:18 +0000
commitc6c1711b0ffe691d7e8819ebedd0526afbedaf8a (patch)
tree9419a28b3b0aa8b478bd7a2504da66122eff6acb /src/main/Coord.c
parent468e43bc8431d700aa5b4d0a60aa1bcb0148744a (diff)
Removing compiler warnings
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1505 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Coord.c')
-rw-r--r--src/main/Coord.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/Coord.c b/src/main/Coord.c
index 81c6cf9f..9d5a8279 100644
--- a/src/main/Coord.c
+++ b/src/main/Coord.c
@@ -474,8 +474,12 @@ int CCTK_CoordLocalRange(cGH *GH,
*lower = global_lower+GH->cctk_lbnd[dir-1]*GH->cctk_delta_space[dir-1];
*upper = global_lower+GH->cctk_ubnd[dir-1]*GH->cctk_delta_space[dir-1];
-
+
+#ifdef DEBUG
printf("Upper/Lower are %f,%f\n",*lower,*upper);
+#endif
+
+ return 0;
}