diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-04-19 16:41:25 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-04-19 16:41:25 -0400 |
commit | 6ff471d814c69fa6dd53b0f1552b73c4e91030b1 (patch) | |
tree | e475442d382d7cf6694011b9ba32a3449b087606 | |
parent | e3cd535c7cfa56b6feb923188c7c8195c72daa28 (diff) | |
download | tor-6ff471d814c69fa6dd53b0f1552b73c4e91030b1.tar.gz tor-6ff471d814c69fa6dd53b0f1552b73c4e91030b1.zip |
Fix a compilation warning on compat_libevent.c on some versions of windows libevent
-rw-r--r-- | src/common/compat_libevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 18e057f957..56ba3235b5 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -11,9 +11,9 @@ **/ #include "orconfig.h" +#include "compat.h" #include "compat_libevent.h" -#include "compat.h" #include "util.h" #include "log.h" |