aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 40cdfd06e..d44c33b0c 100644
--- a/src/util/container_bloomfilter.c
+++ b/src/util/container_bloomfilter.c
@@ -517,8 +517,8 @@ GNUNET_CONTAINER_bloomfilter_load (const char *filename, size_t size,
517 { 517 {
518 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 518 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
519 _("Size of file on disk is incorrect for this Bloom filter (want %llu, have %llu)\n"), 519 _("Size of file on disk is incorrect for this Bloom filter (want %llu, have %llu)\n"),
520 (unsigned long long) fsize, 520 (unsigned long long) (size * 4LL),
521 (unsigned long long) (size * 4LL)); 521 (unsigned long long) fsize);
522 GNUNET_DISK_file_close (bf->fh); 522 GNUNET_DISK_file_close (bf->fh);
523 GNUNET_free (bf); 523 GNUNET_free (bf);
524 return NULL; 524 return NULL;