[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] Appease the hungry God of GCC: it hates K&R style unspecifi...



Update of /home/or/cvsroot/tor/src/common
In directory moria:/tmp/cvs-serv4191/src/common

Modified Files:
	tortls.c 
Log Message:
Appease the hungry God of GCC: it hates K&R style unspecified args!

Index: tortls.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/tortls.c,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -d -r1.98 -r1.99
--- tortls.c	20 Jun 2005 18:56:34 -0000	1.98
+++ tortls.c	21 Jun 2005 01:07:32 -0000	1.99
@@ -148,7 +148,8 @@
 /** Initialize OpenSSL, unless it has already been initialized.
  */
 static void
-tor_tls_init() {
+tor_tls_init(void)
+{
   if (!tls_library_is_initialized) {
     SSL_library_init();
     SSL_load_error_strings();