aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Haas <roland.haas@physics.gatech.edu>2012-07-08 15:51:58 -0700
committerRoland Haas <roland.haas@physics.gatech.edu>2012-07-08 15:51:58 -0700
commit3f816d3322ecb581ded98725d6f7459a371d96d6 (patch)
tree99eb98acd3099a2763793b962df26c6edb551c34
parentd639cf105cc129733b969e871d94bcb8e5c9a195 (diff)
CarpetRegrid: fix typo using cctk_lbnd instead cctk_lsh
-rw-r--r--Carpet/CarpetRegrid2/src/amr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Carpet/CarpetRegrid2/src/amr.cc b/Carpet/CarpetRegrid2/src/amr.cc
index 26f78717c..75f002394 100644
--- a/Carpet/CarpetRegrid2/src/amr.cc
+++ b/Carpet/CarpetRegrid2/src/amr.cc
@@ -102,7 +102,7 @@ namespace CarpetRegrid2 {
}
ivect const lbnd = ivect::ref(cctk_lbnd);
- ivect const lsh = ivect::ref(cctk_lbnd);
+ ivect const lsh = ivect::ref(cctk_lsh);
ivect const bboxlo (cctk_bbox[0], cctk_bbox[2], cctk_bbox[4]);
ivect const bboxhi (cctk_bbox[1], cctk_bbox[3], cctk_bbox[5]);