diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-06 20:38:09 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-14 16:07:36 -0500 |
commit | 4ecd5da3065d83af0743669dfcadd3cb01356cee (patch) | |
tree | ec7d870f0d14dfc0295d5c3f2b16d72d4e62bc16 /src/ext/timeouts/timeout.c | |
parent | d32795bb6ebdfbf05180d7552d4cd18cb33ddcee (diff) | |
download | tor-4ecd5da3065d83af0743669dfcadd3cb01356cee.tar.gz tor-4ecd5da3065d83af0743669dfcadd3cb01356cee.zip |
Add .may_include to ext/timeouts.
Diffstat (limited to 'src/ext/timeouts/timeout.c')
-rw-r--r-- | src/ext/timeouts/timeout.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ext/timeouts/timeout.c b/src/ext/timeouts/timeout.c index d4b514d2c5..07d06772c5 100644 --- a/src/ext/timeouts/timeout.c +++ b/src/ext/timeouts/timeout.c @@ -38,7 +38,7 @@ #include <errno.h> /* errno */ -#include "tor_queue.h" /* TAILQ(3) */ +#include "ext/tor_queue.h" /* TAILQ(3) */ #include "timeout.h" @@ -531,7 +531,7 @@ static timeout_t timeouts_int(struct timeouts *T) { timeout = MIN(_timeout, timeout); } - relmask <<= WHEEL_BIT; + relmask <<= WHEEL_BIT; relmask |= WHEEL_MASK; } @@ -751,4 +751,3 @@ TIMEOUT_PUBLIC int timeout_v_abi(void) { TIMEOUT_PUBLIC int timeout_v_api(void) { return TIMEOUT_V_API; } /* timeout_version() */ - |