summaryrefslogtreecommitdiff
path: root/src/main/Coord.c
diff options
context:
space:
mode:
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;
}