-fix error message
authorChristian Grothoff <christian@grothoff.org>
Sat, 17 Dec 2011 18:26:36 +0000 (18:26 +0000)
committerChristian Grothoff <christian@grothoff.org>
Sat, 17 Dec 2011 18:26:36 +0000 (18:26 +0000)
src/util/container_bloomfilter.c

index 40cdfd06ecff70a817b787c5d236fb103677dc3a..d44c33b0c0af08e258c4c29d997be6733399eb00 100644 (file)
@@ -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;