diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-08-12 13:16:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-08-12 13:16:08 -0400 |
commit | 3cc6d59521b14403f9a0689b2f78f7638d403827 (patch) | |
tree | 8fb969d2a97437b244d8302af4074d2dd91ee27c /src | |
parent | f4f0b4326891e2e5907ff252c704c7f19bbfaf0d (diff) | |
download | tor-3cc6d59521b14403f9a0689b2f78f7638d403827.tar.gz tor-3cc6d59521b14403f9a0689b2f78f7638d403827.zip |
Fix a windows compilation error
Diffstat (limited to 'src')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 3ccb6e9fc1..1c1c4774b4 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2253,7 +2253,7 @@ run_main_loop_until_done(void) /** Libevent callback: invoked when we get a signal. */ static void -signal_callback(int fd, short events, void *arg) +signal_callback(evutil_socket_t fd, short events, void *arg) { const int *sigptr = arg; const int sig = *sigptr; |