aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/Storage.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2006-06-13 17:03:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2006-06-13 17:03:00 +0000
commit913f2c417e0e013b1dca5e8f22d596e6b71339c6 (patch)
tree33c210cca3d8d2f56c270a7ab08ef653f95ce11a /Carpet/Carpet/src/Storage.cc
parent462797edec8b1636f8e23119a6ba3f071347a60f (diff)
Carpet: Convert from/to CCTK_INT and from/to CCTK_REAL
CCTK_INT from/to int and CCTK_REAL from/to double where necessary. darcs-hash:20060613170310-dae7b-de7744ae2c53e0278d9a687ecdadc5634ecc63a7.gz
Diffstat (limited to 'Carpet/Carpet/src/Storage.cc')
-rw-r--r--Carpet/Carpet/src/Storage.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/Carpet/Carpet/src/Storage.cc b/Carpet/Carpet/src/Storage.cc
index 5ecab59c6..de861cd98 100644
--- a/Carpet/Carpet/src/Storage.cc
+++ b/Carpet/Carpet/src/Storage.cc
@@ -357,7 +357,8 @@ namespace Carpet {
CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
"There are not enough time levels for the desired temporal prolongation order in the grid function group \"%s\". With Carpet::prolongation_order_time=%d, you need at least %d time levels.",
groupname,
- prolongation_order_time, prolongation_order_time+1);
+ (int)prolongation_order_time,
+ (int)(prolongation_order_time+1));
free (groupname);
}
}