From: 2xsec Date: Tue, 21 Aug 2018 06:02:06 +0000 (+0900) Subject: list: fix indent X-Git-Tag: lxc-3.1.0~143^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca9a25048b123bc80347d0f85a06acc3b8032298;p=thirdparty%2Flxc.git list: fix indent Signed-off-by: 2xsec --- diff --git a/src/lxc/list.h b/src/lxc/list.h index 9858081ab..e3d409f2f 100644 --- a/src/lxc/list.h +++ b/src/lxc/list.h @@ -154,14 +154,14 @@ static inline void lxc_list_del(struct lxc_list *list) /* Return length of the list. */ static inline size_t lxc_list_len(struct lxc_list *list) { - size_t i = 0; - struct lxc_list *iter; + size_t i = 0; + struct lxc_list *iter; - lxc_list_for_each(iter, list) { + lxc_list_for_each(iter, list) { i++; - } + } - return i; + return i; } #endif /* __LXC_LIST_H */