fix confusing indentation
authorChristian Grothoff <christian@grothoff.org>
Wed, 25 Jan 2017 18:36:35 +0000 (19:36 +0100)
committerChristian Grothoff <christian@grothoff.org>
Wed, 25 Jan 2017 18:36:35 +0000 (19:36 +0100)
src/include/gnunet_container_lib.h

index d2f8c5d9c3799b97e0efab5fbd3b2c5068c197e5..cb5d0e595f547b94dcf116d344281b1d3c8e4756 100644 (file)
@@ -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 *************** */