summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/WarnLevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/WarnLevel.c b/src/main/WarnLevel.c
index 6a6f2b1d..26073de8 100644
--- a/src/main/WarnLevel.c
+++ b/src/main/WarnLevel.c
@@ -503,7 +503,7 @@ int CCTKi_SetWarnLevel (int level)
{
retval = level > warning_level ? +1 : -1;
CCTK_VInfo ("Cactus", "%s warning level from %d to %d",
- retval > 0 ? "Increasing" : "Decreasing", error_level, level);
+ retval > 0 ? "Increasing" : "Decreasing", warning_level, level);
warning_level = level;
}
else