From: Olivier Houchard Date: Wed, 11 Mar 2020 20:41:13 +0000 (+0100) Subject: MINOR: lists: fix indentation. X-Git-Tag: v2.2-dev5~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84fd8a77b76ca157fce9d70e1cb0cc1f86ec6ecb;p=thirdparty%2Fhaproxy.git MINOR: lists: fix indentation. Fix indentation in the recently added list_to_mt_list(). --- diff --git a/include/common/mini-clist.h b/include/common/mini-clist.h index 40baf5d2b5..589a1d9fe9 100644 --- a/include/common/mini-clist.h +++ b/include/common/mini-clist.h @@ -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;