gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r18659 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r18659 - gnunet/src/util
Date: Sat, 17 Dec 2011 19:26:36 +0100

Author: grothoff
Date: 2011-12-17 19:26:36 +0100 (Sat, 17 Dec 2011)
New Revision: 18659

Modified:
   gnunet/src/util/container_bloomfilter.c
Log:
-fix error message

Modified: gnunet/src/util/container_bloomfilter.c
===================================================================
--- gnunet/src/util/container_bloomfilter.c     2011-12-17 14:09:04 UTC (rev 
18658)
+++ gnunet/src/util/container_bloomfilter.c     2011-12-17 18:26:36 UTC (rev 
18659)
@@ -517,8 +517,8 @@
     {
       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;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]