summaryrefslogtreecommitdiffstats
path: root/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'helper.c')
-rw-r--r--helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper.c b/helper.c
index 1bd12bc..c7b4aaf 100644
--- a/helper.c
+++ b/helper.c
@@ -203,9 +203,9 @@ void helper_printfilter(struct Filter* f)
putchar('\n');
}
-void plog(const DebugLevel debugLevel, char *args, ...)
+void plog(const DebugLevel messageLevel, char *args, ...)
{
- if (debugLevel > _debugLevel) return;
+ if (messageLevel > _debugLevel) return;
va_list argList;
va_start(argList, args);
vprintf(args, argList);