aboutsummaryrefslogtreecommitdiff
path: root/src/or/or.h
diff options
context:
space:
mode:
authorMatt Traudt <sirmatt@ksu.edu>2017-09-25 10:43:15 -0400
committerNick Mathewson <nickm@torproject.org>2017-09-25 11:11:30 -0400
commit7bbc29b0f27581b77a16c97e5125d60150447591 (patch)
tree068a85468c0af165c550715b05cfc68f14bcdd07 /src/or/or.h
parentef2a449cceceb777126119d20c15cda707c17d61 (diff)
downloadtor-7bbc29b0f27581b77a16c97e5125d60150447591.tar.gz
tor-7bbc29b0f27581b77a16c97e5125d60150447591.zip
sched: make interval a plain int; initialize with macro
Diffstat (limited to 'src/or/or.h')
-rw-r--r--src/or/or.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h
index 9a9a70cccd..a90841fbcf 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -4615,7 +4615,7 @@ typedef struct {
* not use the KIST scheduler but use the old vanilla scheduler instead. If
* zero, do what the consensus says and fall back to using KIST as if this is
* set to "10 msec" if the consensus doesn't say anything. */
- uint32_t KISTSchedRunInterval;
+ int KISTSchedRunInterval;
/** A multiplier for the KIST per-socket limit calculation. */
double KISTSockBufSizeFactor;