summaryrefslogtreecommitdiffstats
path: root/src/message.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/message.cpp')
-rw-r--r--src/message.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message.cpp b/src/message.cpp
index 9f98107..c7b2a34 100644
--- a/src/message.cpp
+++ b/src/message.cpp
@@ -20,7 +20,7 @@
void msg(const char *fmt, ...)
{
- if (!quietFlag)
+ if (!Config::quietFlag)
{
va_list args;
va_start(args, fmt);
@@ -31,7 +31,7 @@ void msg(const char *fmt, ...)
void warn(const char *fmt, ...)
{
- if (warningFlag)
+ if (Config::warningFlag)
{
va_list args;
va_start(args, fmt);