From 6a9e0ff9c731b615f211cf0cda115f15f8364d14 Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 14 Sep 2004 08:45:48 +0000 Subject: [PATCH] verbose is now off by default. --- lib/python/pyutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/pyutils.c b/lib/python/pyutils.c index f926bd7..a89b287 100644 --- a/lib/python/pyutils.c +++ b/lib/python/pyutils.c @@ -20,7 +20,7 @@ char* setError(char*format, ...) return strdup(buf); } -int verbose = 1; +static int verbose = 0; void mylog(char*format, ...) { char buf[1024]; -- 1.7.10.4