From: Christian Grothoff Date: Wed, 25 Jan 2017 18:36:35 +0000 (+0100) Subject: fix confusing indentation X-Git-Tag: taler-0.2.1~297 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c7dc4199ee7613c1b3d2178de73ce9f8d448075a;p=oweals%2Fgnunet.git fix confusing indentation --- diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h index d2f8c5d9c..cb5d0e595 100644 --- a/src/include/gnunet_container_lib.h +++ b/src/include/gnunet_container_lib.h @@ -2109,17 +2109,17 @@ GNUNET_CONTAINER_multihashmap32_iterator_destroy (struct GNUNET_CONTAINER_MultiH element, \ pos)) \ break; /* element < pos */ \ - if (NULL == pos) /* => element > tail */ \ - GNUNET_CONTAINER_DLL_insert_tail (head, \ - tail, \ - element); \ - else /* prev < element < pos */ \ - GNUNET_CONTAINER_DLL_insert_after (head, \ - tail, \ - element, \ - pos->prev); \ - } \ - } while (0) + if (NULL == pos) /* => element > tail */ \ + GNUNET_CONTAINER_DLL_insert_tail (head, \ + tail, \ + element); \ + else /* prev < element < pos */ \ + GNUNET_CONTAINER_DLL_insert_after (head, \ + tail, \ + element, \ + pos->prev); \ + } \ +} while (0) /* ******************** Heap *************** */