aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@b1d164ef-f17a-46e7-89d4-021c7118ef4e>2007-09-11 12:09:40 +0000
committerschnetter <schnetter@b1d164ef-f17a-46e7-89d4-021c7118ef4e>2007-09-11 12:09:40 +0000
commitaaa93171c3adb49cc9de6c56610c9b8604785522 (patch)
treefe84b1375151889fa7cb52db956b3a7ae3f8b582
parent5c991f788ad98303520ec2d4b9d262c6bcabc49a (diff)
Convert variable explicitly to int before passing it to printf %d.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/ADMMacros/trunk@98 b1d164ef-f17a-46e7-89d4-021c7118ef4e
-rw-r--r--src/SetLocalSpatialOrder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SetLocalSpatialOrder.c b/src/SetLocalSpatialOrder.c
index b2cc1dd..779479c 100644
--- a/src/SetLocalSpatialOrder.c
+++ b/src/SetLocalSpatialOrder.c
@@ -66,7 +66,7 @@ void ADMMacros_SetLocalSpatialOrder(CCTK_ARGUMENTS)
*local_spatial_order = spatial_order;
CCTK_VInfo(CCTK_THORNSTRING, "Spatial finite differencing order: %d",
- spatial_order);
+ (int)spatial_order);
return;
}