aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index c9cfa23d2..c36190b7a 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -597,7 +597,8 @@ GNUNET_CONTAINER_multihashmap_get (const struct GNUNET_CONTAINER_MultiHashMap
597 */ 597 */
598int 598int
599GNUNET_CONTAINER_multihashmap_remove (struct GNUNET_CONTAINER_MultiHashMap *map, 599GNUNET_CONTAINER_multihashmap_remove (struct GNUNET_CONTAINER_MultiHashMap *map,
600 const struct GNUNET_HashCode * key, void *value); 600 const struct GNUNET_HashCode * key,
601 const void *value);
601 602
602/** 603/**
603 * Remove all entries for the given key from the map. 604 * Remove all entries for the given key from the map.
@@ -807,7 +808,8 @@ GNUNET_CONTAINER_multihashmap32_iterate (const struct
807int 808int
808GNUNET_CONTAINER_multihashmap32_remove (struct GNUNET_CONTAINER_MultiHashMap32 809GNUNET_CONTAINER_multihashmap32_remove (struct GNUNET_CONTAINER_MultiHashMap32
809 *map, 810 *map,
810 uint32_t key, void *value); 811 uint32_t key,
812 const void *value);
811 813
812 814
813/** 815/**