From 7536db9fc52657812e14c6890f2a95db8ca685b2 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 25 Jan 2019 17:17:54 +0100 Subject: [PATCH] fix mddl insert after macro --- src/include/gnunet_container_lib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h index e7bd4113d..fee851e1c 100644 --- a/src/include/gnunet_container_lib.h +++ b/src/include/gnunet_container_lib.h @@ -2011,7 +2011,7 @@ GNUNET_CONTAINER_multihashmap32_iterator_destroy (struct GNUNET_CONTAINER_MultiH if (NULL == (element)->next_##mdll) \ (tail) = (element); \ else \ - (element)->next->prev_##mdll = (element); } while (0) + (element)->next_##mdll->prev_##mdll = (element); } while (0) /** -- 2.25.1