From: Michael Stapelberg Date: Wed, 17 Aug 2011 10:16:32 +0000 (+0200) Subject: Bugfix: Initialize verbose to 'false' (Thanks tilman) X-Git-Tag: 4.0.2~40^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=22882f4e89d2f36d12c557a51b845c22f5868876;p=i3%2Fi3 Bugfix: Initialize verbose to 'false' (Thanks tilman) Verbosity was set to 'true' when we started the tree branch. We forgot to set it back to 'false' :-). --- diff --git a/src/log.c b/src/log.c index 22b7fffe..d424ffd3 100644 --- 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;