From: Christian Grothoff Date: Sat, 17 Dec 2011 18:26:36 +0000 (+0000) Subject: -fix error message X-Git-Tag: initial-import-from-subversion-38251~15602 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d5fbdb54ad7c085b22a8ce37979afccd16617a73;p=oweals%2Fgnunet.git -fix error message --- 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;