aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-04-23 10:47:47 +0000
committerChristian Grothoff <christian@grothoff.org>2014-04-23 10:47:47 +0000
commit21bac846638fbbbe2b03672295d4f14fc3ceb839 (patch)
treeedd9bc8a6bad2839014be46498a9cd9065ac2624 /src
parent2c9743fed0eb54a28cf376ef8fbb7a934990684c (diff)
downloadgnunet-21bac846638fbbbe2b03672295d4f14fc3ceb839.tar.gz
gnunet-21bac846638fbbbe2b03672295d4f14fc3ceb839.zip
-rename to conform with naming conventions
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_container_lib.h6
-rw-r--r--src/util/container_bloomfilter.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 165643f60..a9c1f4b45 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -61,14 +61,14 @@ struct GNUNET_CONTAINER_BloomFilter;
61 61
62/** 62/**
63 * @ingroup bloomfilter 63 * @ingroup bloomfilter
64 * Iterator over struct GNUNET_HashCodes. 64 * Iterator over `struct GNUNET_HashCode`.
65 * 65 *
66 * @param cls closure 66 * @param cls closure
67 * @param next set to the next hash code 67 * @param next set to the next hash code
68 * @return #GNUNET_YES if next was updated 68 * @return #GNUNET_YES if next was updated
69 * #GNUNET_NO if there are no more entries 69 * #GNUNET_NO if there are no more entries
70 */ 70 */
71typedef int (*GNUNET_HashCodeIterator) (void *cls, 71typedef int (*GNUNET_CONTAINER_HashCodeIterator) (void *cls,
72 struct GNUNET_HashCode *next); 72 struct GNUNET_HashCode *next);
73 73
74 74
@@ -260,7 +260,7 @@ GNUNET_CONTAINER_bloomfilter_or2 (struct GNUNET_CONTAINER_BloomFilter *bf,
260 */ 260 */
261void 261void
262GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf, 262GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf,
263 GNUNET_HashCodeIterator iterator, 263 GNUNET_CONTAINER_HashCodeIterator iterator,
264 void *iterator_cls, size_t size, 264 void *iterator_cls, size_t size,
265 unsigned int k); 265 unsigned int k);
266 266
diff --git a/src/util/container_bloomfilter.c b/src/util/container_bloomfilter.c
index 9554e0ec0..8658320c1 100644
--- a/src/util/container_bloomfilter.c
+++ b/src/util/container_bloomfilter.c
@@ -850,7 +850,7 @@ GNUNET_CONTAINER_bloomfilter_remove (struct GNUNET_CONTAINER_BloomFilter *bf,
850 */ 850 */
851void 851void
852GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf, 852GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf,
853 GNUNET_HashCodeIterator iterator, 853 GNUNET_CONTAINER_HashCodeIterator iterator,
854 void *iterator_cls, size_t size, 854 void *iterator_cls, size_t size,
855 unsigned int k) 855 unsigned int k)
856{ 856{