diff options
Diffstat (limited to 'src/lib/container')
-rw-r--r-- | src/lib/container/.may_include | 2 | ||||
-rw-r--r-- | src/lib/container/bloomfilt.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/container/.may_include b/src/lib/container/.may_include index eaa020bf50..42458b2953 100644 --- a/src/lib/container/.may_include +++ b/src/lib/container/.may_include @@ -7,10 +7,10 @@ lib/malloc/*.h lib/err/*.h lib/string/*.h lib/testsupport/testsupport.h +lib/intmath/*.h ht.h siphash.h # XXX I'd like to remove this. -common/util.h common/util_bug.h diff --git a/src/lib/container/bloomfilt.c b/src/lib/container/bloomfilt.c index 4847408ee7..cbb4d13e5d 100644 --- a/src/lib/container/bloomfilt.c +++ b/src/lib/container/bloomfilt.c @@ -14,7 +14,7 @@ #include <stdlib.h> #include "lib/malloc/util_malloc.h" #include "lib/container/bloomfilt.h" -#include "common/util.h" // For tor_log2 +#include "lib/intmath/bits.h" /** Return a newly allocated digestset_t, optimized to hold a total of * <b>max_elements</b> digests with a reasonably low false positive weight. */ |