aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@6a38eb6e-646e-4a02-a296-d141613ad6c4>2001-09-12 09:27:13 +0000
committertradke <tradke@6a38eb6e-646e-4a02-a296-d141613ad6c4>2001-09-12 09:27:13 +0000
commita428d9342417c7971ff207a9d6561affbfff69b8 (patch)
treefb13e43f70e58134dc154743e1d64612305228e7
parente9abb001989784b75ef453b7798b4d3d774d9042 (diff)
Fixed preprocessor warning.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@157 6a38eb6e-646e-4a02-a296-d141613ad6c4
-rw-r--r--src/FlatBoundary.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FlatBoundary.c b/src/FlatBoundary.c
index f0d3643..63166ef 100644
--- a/src/FlatBoundary.c
+++ b/src/FlatBoundary.c
@@ -883,7 +883,7 @@ static int ApplyBndFlat (const cGH *GH,
{
printf("Boundary: Applying upper x flat boundary condition\n");
}
-#endif DEBUG_BOUNDARY
+#endif /* DEBUG_BOUNDARY */
/* lower x */
FLAT_BOUNDARY (doBC[0], stencil[0], lssh[1], lssh[2],
i, j, k, stencil[0], j, k);
@@ -903,7 +903,7 @@ static int ApplyBndFlat (const cGH *GH,
{
printf("Boundary: Applying upper y flat boundary condition\n");
}
-#endif DEBUG_BOUNDARY
+#endif /* DEBUG_BOUNDARY */
/* lower y */
FLAT_BOUNDARY (doBC[2], lssh[0], stencil[1], lssh[2],
i, j, k, i, stencil[1], k);
@@ -922,7 +922,7 @@ static int ApplyBndFlat (const cGH *GH,
{
printf("Boundary: Applying upper z flat boundary condition\n");
}
-#endif DEBUG_BOUNDARY
+#endif /* DEBUG_BOUNDARY */
/* lower z */
FLAT_BOUNDARY (doBC[4], lssh[0], lssh[1], stencil[2],
i, j, k, i, j, stencil[2]);