spaces
authorChristian Grothoff <christian@grothoff.org>
Thu, 31 Mar 2011 13:25:56 +0000 (13:25 +0000)
committerChristian Grothoff <christian@grothoff.org>
Thu, 31 Mar 2011 13:25:56 +0000 (13:25 +0000)
src/util/container_bloomfilter.c

index ae1336f88e134a878fd47c6f716b904972e2e3b7..53eaf31d1b0c6196f5c84f164cb48ff33e096f33 100644 (file)
@@ -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--;