aboutsummaryrefslogtreecommitdiff
path: root/src/util/container_bloomfilter.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-17 18:26:36 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-17 18:26:36 +0000
commitd5fbdb54ad7c085b22a8ce37979afccd16617a73 (patch)
tree3e92261ea5a8ab4102d061890267fc0f6925fbfa /src/util/container_bloomfilter.c
parent7e3e0f1137bf93517c26300d1229fa6533f35df2 (diff)
downloadgnunet-d5fbdb54ad7c085b22a8ce37979afccd16617a73.tar.gz
gnunet-d5fbdb54ad7c085b22a8ce37979afccd16617a73.zip
-fix error message
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 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;