aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Haas <rhaas@tapir.caltech.edu>2013-09-25 13:07:33 -0700
committerRoland Haas <rhaas@tapir.caltech.edu>2013-09-25 15:59:02 -0700
commit38923afb0681b02fae2171cf54671cbe587ff748 (patch)
treec5b7166a5ee0aa49b30566c2a92f78d9f6b82d57
parentb7204bb29c90d0cf59680cfc8232a3a0de388a73 (diff)
Carpet: correct wording of error message about number of time levels
-rw-r--r--Carpet/Carpet/src/SetupGH.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Carpet/Carpet/src/SetupGH.cc b/Carpet/Carpet/src/SetupGH.cc
index d04a80265..f24d3f6d4 100644
--- a/Carpet/Carpet/src/SetupGH.cc
+++ b/Carpet/Carpet/src/SetupGH.cc
@@ -739,7 +739,7 @@ namespace Carpet {
}
if (maxtimelevels < prolongation_order_time + 1) {
CCTK_VError (__LINE__, __FILE__, CCTK_THORNSTRING,
- "There are enough time levels for this time prolongation order: max_time_levels=%d, prolongation_order_time=%d",
+ "There are not enough time levels for this time prolongation order: max_time_levels=%d, prolongation_order_time=%d",
int(max_time_levels), int(prolongation_order_time));
}
}