]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Don't initialize static variables to 0.
authorSimon Ruderich <simon@ruderich.org>
Mon, 29 Jul 2013 11:17:02 +0000 (13:17 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 29 Jul 2013 11:17:02 +0000 (13:17 +0200)
src/tlsproxy.c

index ea0578b78bae88673a8c45f9e8cdbc50897ca395..91d91b95de828b845deb07706e8ff4ae013d997a 100644 (file)
@@ -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;