From cf970518e788895838bf6efd51c15418742d0802 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 29 Jul 2013 13:17:02 +0200 Subject: [PATCH] Don't initialize static variables to 0. --- src/tlsproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tlsproxy.c b/src/tlsproxy.c index ea0578b..91d91b9 100644 --- a/src/tlsproxy.c +++ b/src/tlsproxy.c @@ -53,7 +53,7 @@ GCRY_THREAD_OPTION_PTHREAD_IMPL; /* Server should shut down. Set by SIGINT handler. */ -static volatile int done = 0; +static volatile int done; /* = 0 */ /* Number of threads. */ static size_t thread_count; -- 2.43.2