aboutsummaryrefslogtreecommitdiff
path: root/src/util/container_bloomfilter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/container_bloomfilter.c')
-rw-r--r--src/util/container_bloomfilter.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util/container_bloomfilter.c b/src/util/container_bloomfilter.c
index d89b46252..8a0487e04 100644
--- a/src/util/container_bloomfilter.c
+++ b/src/util/container_bloomfilter.c
@@ -358,11 +358,12 @@ make_empty_file (const struct GNUNET_DISK_FileHandle *fh, size_t size)
358 * @param cls closure 358 * @param cls closure
359 * @param bf the filter to manipulate 359 * @param bf the filter to manipulate
360 * @param bit the current bit 360 * @param bit the current bit
361 * @return GNUNET_YES to continue, GNUNET_NO to stop early 361 * @return #GNUNET_YES to continue, #GNUNET_NO to stop early
362 */ 362 */
363typedef int (*BitIterator) (void *cls, 363typedef int
364 const struct GNUNET_CONTAINER_BloomFilter *bf, 364(*BitIterator) (void *cls,
365 unsigned int bit); 365 const struct GNUNET_CONTAINER_BloomFilter *bf,
366 unsigned int bit);
366 367
367 368
368/** 369/**