diff options
author | Dimitre Piskyulev <piskyulev@users.sourceforge.net> | 2010-10-27 17:31:52 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-10-27 17:32:06 -0400 |
commit | f817bfa4d37448f21d6f753769f6ad91d113dd7c (patch) | |
tree | 72018d5e3c4ab59d02a12d49ee6de2cf6b90ed77 /event-internal.h | |
parent | 19c71e7454305e4e10c7d0c6ed1520fe5e1521df (diff) | |
download | libevent-f817bfa4d37448f21d6f753769f6ad91d113dd7c.tar.gz |
Fix some ints to evutil_socket_t; make tests pass on win64.
Diffstat (limited to 'event-internal.h')
-rw-r--r-- | event-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/event-internal.h b/event-internal.h index 669ae2b0..50e1e4d2 100644 --- a/event-internal.h +++ b/event-internal.h @@ -267,7 +267,7 @@ struct event_base { int is_notify_pending; /** A socketpair used by some th_notify functions to wake up the main * thread. */ - int th_notify_fd[2]; + evutil_socket_t th_notify_fd[2]; /** An event used by some th_notify functions to wake up the main * thread. */ struct event th_notify; |