From aaa93171c3adb49cc9de6c56610c9b8604785522 Mon Sep 17 00:00:00 2001 From: schnetter Date: Tue, 11 Sep 2007 12:09:40 +0000 Subject: 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 --- src/SetLocalSpatialOrder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3