fix
authorChristian Grothoff <christian@grothoff.org>
Mon, 18 Jan 2010 10:21:07 +0000 (10:21 +0000)
committerChristian Grothoff <christian@grothoff.org>
Mon, 18 Jan 2010 10:21:07 +0000 (10:21 +0000)
src/util/container_bloomfilter.c

index 2bdf371974f6d50636677f4a6b613dd289016fdf..6257ea30a5535311811b406fb2c939335a86dc28 100644 (file)
@@ -640,7 +640,7 @@ GNUNET_CONTAINER_bloomfilter_or (struct GNUNET_CONTAINER_BloomFilter *bf,
   for (i = 0; i < n; i++)
     fc[i] |= dc[i];
   for (i = n * sizeof(unsigned long long); i < size; i++)
-    bf->bitArray[i] |= data[i]
+    bf->bitArray[i] |= data[i];
   return GNUNET_OK;
 }