Commit 841247a5 authored by Sebastian Hahn's avatar Sebastian Hahn Committed by Nick Mathewson
Browse files

Fix a compile warning on 64bit OS X

Backport of 68475fc5 which accidentally
only made it into master. Fixes bug 4547. Bug isn't in any released
version.
parent 97a209ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1909,7 +1909,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. */