aboutsummaryrefslogtreecommitdiff
path: root/src/util/container_bloomfilter.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-31 17:31:25 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-31 17:31:25 +0000
commitef553264c58d5286b451f5feb89dbd63bac86236 (patch)
tree95f46218778de710074c2ba03d7ca17358f6f9e3 /src/util/container_bloomfilter.c
parent7b1c5fd65daf683fdc02d59fb14543585fd30e27 (diff)
downloadgnunet-ef553264c58d5286b451f5feb89dbd63bac86236.tar.gz
gnunet-ef553264c58d5286b451f5feb89dbd63bac86236.zip
-LRN: fixing issues that slipped through earlier
Diffstat (limited to 'src/util/container_bloomfilter.c')
-rw-r--r--src/util/container_bloomfilter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/container_bloomfilter.c b/src/util/container_bloomfilter.c
index 5016b70ef..84aab6b17 100644
--- a/src/util/container_bloomfilter.c
+++ b/src/util/container_bloomfilter.c
@@ -183,7 +183,7 @@ static void
183incrementBit (char *bitArray, unsigned int bitIdx, 183incrementBit (char *bitArray, unsigned int bitIdx,
184 const struct GNUNET_DISK_FileHandle *fh) 184 const struct GNUNET_DISK_FileHandle *fh)
185{ 185{
186 uint64_t fileSlot; 186 OFF_T fileSlot;
187 unsigned char value; 187 unsigned char value;
188 unsigned int high; 188 unsigned int high;
189 unsigned int low; 189 unsigned int low;
@@ -231,7 +231,7 @@ static void
231decrementBit (char *bitArray, unsigned int bitIdx, 231decrementBit (char *bitArray, unsigned int bitIdx,
232 const struct GNUNET_DISK_FileHandle *fh) 232 const struct GNUNET_DISK_FileHandle *fh)
233{ 233{
234 uint64_t fileSlot; 234 OFF_T fileSlot;
235 unsigned char value; 235 unsigned char value;
236 unsigned int high; 236 unsigned int high;
237 unsigned int low; 237 unsigned int low;