summaryrefslogtreecommitdiff
path: root/evthread-internal.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-05-25 19:50:56 -0400
committerNick Mathewson <nickm@torproject.org>2011-05-25 20:03:15 -0400
commit9f560bfa114b8216af2dac28966eae53c0c97ed3 (patch)
treeb1af5a819ff6afe10e45b8e6b5fed83f84d2fcc0 /evthread-internal.h
parent0e95950e605d24cff370d07db1a4fc40d15c31e3 (diff)
downloadlibevent-9f560bfa114b8216af2dac28966eae53c0c97ed3.tar.gz
Use "_WIN32", not WIN32: it's standard and we don't need to fake it
This patch was automatically generated with perl. Based on a patch by Peter Rosin.
Diffstat (limited to 'evthread-internal.h')
-rw-r--r--evthread-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/evthread-internal.h b/evthread-internal.h
index 847006ed..da6184c4 100644
--- a/evthread-internal.h
+++ b/evthread-internal.h
@@ -38,7 +38,7 @@ extern "C" {
struct event_base;
-#ifndef WIN32
+#ifndef _WIN32
/* On Windows, the way we currently make DLLs, it's not allowed for us to
* have shared global structures. Thus, we only do the direct-call-to-function
* code path if we know that the local shared library system supports it.