]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: lists: fix indentation.
authorOlivier Houchard <cognet@ci0.org>
Wed, 11 Mar 2020 20:41:13 +0000 (21:41 +0100)
committerOlivier Houchard <cognet@ci0.org>
Wed, 11 Mar 2020 20:41:13 +0000 (21:41 +0100)
Fix indentation in the recently added list_to_mt_list().

include/common/mini-clist.h

index 40baf5d2b5fc2fca32b689cf03ec44e10786b3f4..589a1d9fe9df18ec2b41670e20f8582b88e8b5d8 100644 (file)
@@ -676,7 +676,7 @@ static __inline struct list *mt_list_to_list(struct mt_list *list)
 
 static __inline struct mt_list *list_to_mt_list(struct list *list)
 {
-               union {
+       union {
                struct mt_list *mt_list;
                struct list *list;
        } mylist;