From d5fbdb54ad7c085b22a8ce37979afccd16617a73 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 17 Dec 2011 18:26:36 +0000 Subject: -fix error message --- src/util/container_bloomfilter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/container_bloomfilter.c') 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, { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Size of file on disk is incorrect for this Bloom filter (want %llu, have %llu)\n"), - (unsigned long long) fsize, - (unsigned long long) (size * 4LL)); + (unsigned long long) (size * 4LL), + (unsigned long long) fsize); GNUNET_DISK_file_close (bf->fh); GNUNET_free (bf); return NULL; -- cgit v1.2.3