From 417153f60dbac6d5e626978136dc9ea429598a0d Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 31 Mar 2011 13:25:56 +0000 Subject: [PATCH] spaces --- src/util/container_bloomfilter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/container_bloomfilter.c b/src/util/container_bloomfilter.c index ae1336f88..53eaf31d1 100644 --- a/src/util/container_bloomfilter.c +++ b/src/util/container_bloomfilter.c @@ -319,7 +319,7 @@ makeEmptyFile (const struct GNUNET_DISK_FileHandle *fh, size_t size) * @param bit the current bit */ typedef void (*BitIterator) (void *cls, - const struct GNUNET_CONTAINER_BloomFilter * bf, + const struct GNUNET_CONTAINER_BloomFilter *bf, unsigned int bit); /** @@ -333,7 +333,7 @@ typedef void (*BitIterator) (void *cls, */ static void iterateBits (const struct GNUNET_CONTAINER_BloomFilter *bf, - BitIterator callback, void *arg, const GNUNET_HashCode * key) + BitIterator callback, void *arg, const GNUNET_HashCode *key) { GNUNET_HashCode tmp[2]; int bitCount; @@ -349,7 +349,7 @@ iterateBits (const struct GNUNET_CONTAINER_BloomFilter *bf, { callback (arg, bf, - (((uint32_t *) & tmp[round & 1])[slot]) & + (((uint32_t *) &tmp[round & 1])[slot]) & ((bf->bitArraySize * 8) - 1)); slot++; bitCount--; -- 2.25.1