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' :-).
next
Michael Stapelberg 2011-08-17 12:16:32 +02:00
parent 336ce56cf3
commit 22882f4e89
1 changed files with 1 additions and 1 deletions

View File

@ -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;