diff src/verbmsg.cc @ 80:2f1ecc1c5f72

Huge cleanup -- move some global variables into a struct.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 26 Sep 2011 17:39:49 +0300
parents a68786b9c74b
children
line wrap: on
line diff
--- a/src/verbmsg.cc	Mon Sep 26 17:14:54 2011 +0300
+++ b/src/verbmsg.cc	Mon Sep 26 17:39:49 2011 +0300
@@ -38,8 +38,9 @@
 {
     va_list args;
 
-    if (!verbose)
+    if (!cfg.verbose)
         return;
+
     va_start(args, fmt);
     vprintf(fmt, args);
 }