aboutsummaryrefslogtreecommitdiff
path: root/src/CopyBoundary.c
diff options
context:
space:
mode:
authorschnetter <schnetter@6a38eb6e-646e-4a02-a296-d141613ad6c4>2006-10-05 16:56:28 +0000
committerschnetter <schnetter@6a38eb6e-646e-4a02-a296-d141613ad6c4>2006-10-05 16:56:28 +0000
commitafae40cc56a2e241d6bdddd24ff72bedd79a5d36 (patch)
tree47e7152c50e05e71e68319aa5452b9542c8192d0 /src/CopyBoundary.c
parent64e64f2970eae8f0f92b02350ad0bd8b6ccbd1ba (diff)
Convert expressions explicitly to int before passing them to printf.
Use #ifdef HAVE_CCTK_REAL4 instead of #ifdef CCTK_REAL4. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@290 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/CopyBoundary.c')
-rw-r--r--src/CopyBoundary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CopyBoundary.c b/src/CopyBoundary.c
index 2caaf66..1f285fb 100644
--- a/src/CopyBoundary.c
+++ b/src/CopyBoundary.c
@@ -132,7 +132,7 @@ CCTK_INT BndCopy(const cGH *GH, CCTK_INT num_vars, CCTK_INT *vars,
CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,
"Faces specification %d for Copy boundary conditions on "
"%s is not implemented yet. "
- "Applying Copy bcs to all (external) faces.", faces[i],
+ "Applying Copy bcs to all (external) faces.", (int)faces[i],
CCTK_VarName(vars[i]));
}
dir = 0; /* apply bc to all faces */