diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-12-06 19:49:20 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-12-06 19:49:20 -0500 |
commit | 53f535aeb863204470379b2da4631770fa10b13f (patch) | |
tree | 86d49e6dd4b1d18cb9f1a81b243103db5e6b2966 | |
parent | df1f72329acf5f555618a5309f2621e584c0d763 (diff) | |
download | tor-53f535aeb863204470379b2da4631770fa10b13f.tar.gz tor-53f535aeb863204470379b2da4631770fa10b13f.zip |
Revert "appease check-spaces"
This reverts commit f77f9bddb8bf0dd6e9c3e0d94269aa23f459a272.
-rw-r--r-- | src/common/compat_libevent.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index b709b4afd6..fcc119373a 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -243,8 +243,8 @@ tor_libevent_initialize(tor_libevent_cfg *torcfg) * again. */ #if defined(MS_WINDOWS) && defined(USE_BUFFEREVENTS) if (torcfg->disable_iocp == 0) { - log_warn(LD_GENERAL, "Unable to initialize Libevent. Trying again " - "with IOCP disabled."); + log_warn(LD_GENERAL, "Unable to initialize Libevent. Trying again with " + "IOCP disabled."); } else #endif { @@ -254,6 +254,7 @@ tor_libevent_initialize(tor_libevent_cfg *torcfg) torcfg->disable_iocp = 1; goto retry; } + } #else the_event_base = event_init(); |