diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-11-24 09:20:51 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-12-08 08:43:32 +0100 |
commit | ee8b4b4e6e5cebee97678325f80de374a5a33ccc (patch) | |
tree | 88e3f85c92cd687075a8cdc2ec4b9498cf105ce4 | |
parent | 00fae9a500475d7ebf1dd0f56c7fc78e2567c818 (diff) | |
download | tor-ee8b4b4e6e5cebee97678325f80de374a5a33ccc.tar tor-ee8b4b4e6e5cebee97678325f80de374a5a33ccc.tar.gz |
appease check-spaces
This re-applies f77f9bddb8bf0dd6e9c3e0d94269aa23f459a272 which got
accidentally reverted in 53f535aeb863204470379b2da4631770fa10b13f.
Thanks asn for spotting this.
-rw-r--r-- | src/common/compat_libevent.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 7a28c9bc9..0cedef8d5 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,7 +254,6 @@ tor_libevent_initialize(tor_libevent_cfg *torcfg) torcfg->disable_iocp = 1; goto retry; } - } #else the_event_base = event_init(); |