[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r8650: Remove spurious void which causes builds to fail in mingw. (tor/trunk/src/or)
Author: phobos
Date: 2006-10-08 14:44:02 -0400 (Sun, 08 Oct 2006)
New Revision: 8650
Modified:
tor/trunk/src/or/eventdns.c
Log:
Remove spurious void which causes builds to fail in mingw.
Modified: tor/trunk/src/or/eventdns.c
===================================================================
--- tor/trunk/src/or/eventdns.c 2006-10-08 18:24:31 UTC (rev 8649)
+++ tor/trunk/src/or/eventdns.c 2006-10-08 18:44:02 UTC (rev 8650)
@@ -2305,7 +2305,7 @@
{
int res = 0;
#ifdef MS_WINDOWS
- evdns_config_windows_nameservers(void);
+ evdns_config_windows_nameservers();
#else
res = evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf");
#endif