aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-11-15 19:06:41 +0000
committerChristian Grothoff <christian@grothoff.org>2014-11-15 19:06:41 +0000
commit059bf2b2f73205d47e01c04d15fe31eea23105d8 (patch)
tree141911fe0d5ebeea9d8fc93216d8451ca3c3e6dc /src/util
parentaa6bebab28149dc9440749afadc279f134ea3f5c (diff)
downloadgnunet-059bf2b2f73205d47e01c04d15fe31eea23105d8.tar.gz
gnunet-059bf2b2f73205d47e01c04d15fe31eea23105d8.zip
-fix #3558
Diffstat (limited to 'src/util')
-rw-r--r--src/util/container_multihashmap32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/container_multihashmap32.c b/src/util/container_multihashmap32.c
index 365333de2..35b62ad74 100644
--- a/src/util/container_multihashmap32.c
+++ b/src/util/container_multihashmap32.c
@@ -219,9 +219,9 @@ GNUNET_CONTAINER_multihashmap32_get (const struct
219 * 219 *
220 * @param map the map 220 * @param map the map
221 * @param it function to call on each entry 221 * @param it function to call on each entry
222 * @param it_cls extra argument to it 222 * @param it_cls extra argument to @a it
223 * @return the number of key value pairs processed, 223 * @return the number of key value pairs processed,
224 * GNUNET_SYSERR if it aborted iteration 224 * #GNUNET_SYSERR if it aborted iteration
225 */ 225 */
226int 226int
227GNUNET_CONTAINER_multihashmap32_iterate (const struct 227GNUNET_CONTAINER_multihashmap32_iterate (const struct
@@ -235,7 +235,7 @@ GNUNET_CONTAINER_multihashmap32_iterate (const struct
235 struct MapEntry *n; 235 struct MapEntry *n;
236 236
237 count = 0; 237 count = 0;
238 GNUNET_assert (map != NULL); 238 GNUNET_assert (NULL != map);
239 for (i = 0; i < map->map_length; i++) 239 for (i = 0; i < map->map_length; i++)
240 { 240 {
241 n = map->map[i]; 241 n = map->map[i];