]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Initialize verbose to 'false' (Thanks tilman)
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 17 Aug 2011 10:16:32 +0000 (12:16 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 17 Aug 2011 10:16:32 +0000 (12:16 +0200)
Verbosity was set to 'true' when we started the tree branch.
We forgot to set it back to 'false' :-).

src/log.c

index 22b7fffe8774986b63fabce036f0cbfcde597cc0..d424ffd3261b0c97bdf824c49249e993ccc12275 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -24,7 +24,7 @@
 #include "loglevels.h"
 
 static uint64_t loglevel = 0;
-static bool verbose = true;
+static bool verbose = false;
 static FILE *errorfile;
 char *errorfilename;