Skip to content
Snippets Groups Projects
Commit 68475fc5 authored by Sebastian Hahn's avatar Sebastian Hahn
Browse files

Fix a compile warning on 64bit OS X

parent a58d9e60
Branches
Tags tor-0.2.3.8-alpha
No related merge requests found
......@@ -1941,7 +1941,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl)
* of Fast nodes. */
if (options->AuthDirFastGuarantee &&
fast_bandwidth > options->AuthDirFastGuarantee)
fast_bandwidth = options->AuthDirFastGuarantee;
fast_bandwidth = (uint32_t)options->AuthDirFastGuarantee;
/* Now that we have a time-known that 7/8 routers are known longer than,
* fill wfus with the wfu of every such "familiar" router. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment