aboutsummaryrefslogtreecommitdiff
path: root/src/RobinBoundary.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/RobinBoundary.c')
-rw-r--r--src/RobinBoundary.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/RobinBoundary.c b/src/RobinBoundary.c
index c40e155..23de67e 100644
--- a/src/RobinBoundary.c
+++ b/src/RobinBoundary.c
@@ -133,7 +133,7 @@ CCTK_INT BndRobin(const cGH *GH, CCTK_INT num_vars, CCTK_INT *vars,
CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,
"Faces specification %d for Robin boundary conditions on "
"%s is not implemented yet. "
- "Applying Robin bcs to all (external) faces.", faces[i],
+ "Applying Robin bcs to all (external) faces.", (int)faces[i],
CCTK_VarName(vars[i]));
}
@@ -983,17 +983,17 @@ static int ApplyBndRobin (const cGH *GH,
case CCTK_VARIABLE_REAL:
ROBIN_BOUNDARY (CCTK_REAL); break;
-#ifdef CCTK_REAL4
+#ifdef HAVE_CCTK_REAL4
case CCTK_VARIABLE_REAL4:
ROBIN_BOUNDARY (CCTK_REAL4); break;
#endif
-#ifdef CCTK_REAL8
+#ifdef HAVE_CCTK_REAL8
case CCTK_VARIABLE_REAL8:
ROBIN_BOUNDARY (CCTK_REAL8); break;
#endif
-#ifdef CCTK_REAL16
+#ifdef HAVE_CCTK_REAL16
case CCTK_VARIABLE_REAL16:
ROBIN_BOUNDARY (CCTK_REAL16); break;
#endif