gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r33126 - in gnunet/src: include util


From: gnunet
Subject: [GNUnet-SVN] r33126 - in gnunet/src: include util
Date: Wed, 23 Apr 2014 12:47:48 +0200

Author: grothoff
Date: 2014-04-23 12:47:47 +0200 (Wed, 23 Apr 2014)
New Revision: 33126

Modified:
   gnunet/src/include/gnunet_container_lib.h
   gnunet/src/util/container_bloomfilter.c
Log:
-rename to conform with naming conventions

Modified: gnunet/src/include/gnunet_container_lib.h
===================================================================
--- gnunet/src/include/gnunet_container_lib.h   2014-04-23 09:30:14 UTC (rev 
33125)
+++ gnunet/src/include/gnunet_container_lib.h   2014-04-23 10:47:47 UTC (rev 
33126)
@@ -61,14 +61,14 @@
 
 /**
  * @ingroup bloomfilter
- * Iterator over struct GNUNET_HashCodes.
+ * Iterator over `struct GNUNET_HashCode`.
  *
  * @param cls closure
  * @param next set to the next hash code
  * @return #GNUNET_YES if next was updated
  *         #GNUNET_NO if there are no more entries
  */
-typedef int (*GNUNET_HashCodeIterator) (void *cls,
+typedef int (*GNUNET_CONTAINER_HashCodeIterator) (void *cls,
                                         struct GNUNET_HashCode *next);
 
 
@@ -260,7 +260,7 @@
  */
 void
 GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf,
-                                     GNUNET_HashCodeIterator iterator,
+                                     GNUNET_CONTAINER_HashCodeIterator 
iterator,
                                      void *iterator_cls, size_t size,
                                      unsigned int k);
 

Modified: gnunet/src/util/container_bloomfilter.c
===================================================================
--- gnunet/src/util/container_bloomfilter.c     2014-04-23 09:30:14 UTC (rev 
33125)
+++ gnunet/src/util/container_bloomfilter.c     2014-04-23 10:47:47 UTC (rev 
33126)
@@ -850,7 +850,7 @@
  */
 void
 GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf,
-                                     GNUNET_HashCodeIterator iterator,
+                                     GNUNET_CONTAINER_HashCodeIterator 
iterator,
                                      void *iterator_cls, size_t size,
                                      unsigned int k)
 {




reply via email to

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