aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/RK45.c4
-rw-r--r--src/SetTime.c6
-rw-r--r--src/StepSize.c3
3 files changed, 12 insertions, 1 deletions
diff --git a/src/RK45.c b/src/RK45.c
index 880f1fb..ea547fd 100644
--- a/src/RK45.c
+++ b/src/RK45.c
@@ -150,6 +150,10 @@ void MoL_RK45Add(CCTK_ARGUMENTS)
else
{
CCTK_WARN (0, "internal error");
+ /* Avoid compiler warnings */
+ beta_array = NULL;
+ gammastar_array = NULL;
+ gamma_array = NULL;
}
int totalsize = 1;
diff --git a/src/SetTime.c b/src/SetTime.c
index 969c95a..edef89f 100644
--- a/src/SetTime.c
+++ b/src/SetTime.c
@@ -284,6 +284,8 @@ void MoL_ResetTime(CCTK_ARGUMENTS)
else
{
CCTK_WARN (0, "internal error");
+ /* Avoid compiler warning */
+ alpha_array = NULL;
}
cctkGH->cctk_time
= ((* Original_Time)
@@ -463,7 +465,9 @@ void MoL_ResetDeltaTime(CCTK_ARGUMENTS)
}
else
{
- CCTK_WARN (0, "internal error");
+ CCTK_WARN (0, "internal error");
+ /* Avoid compiler warning */
+ alpha_array = NULL;
}
cctkGH->cctk_delta_time
= ((alpha_array[substep + 1] - alpha_array[substep])
diff --git a/src/StepSize.c b/src/StepSize.c
index 4ea17ff..c32812c 100644
--- a/src/StepSize.c
+++ b/src/StepSize.c
@@ -259,6 +259,9 @@ void MoL_ReduceAdaptiveError(CCTK_ARGUMENTS)
else
{
CCTK_WARN (CCTK_WARN_ABORT, "unsupported ODE_Method in stepsize control");
+ /* Avoid compiler warnings */
+ p1 = 0;
+ p2 = 0;
}
/* Decide whether to accept this step */