Unverified Commit a03bd5d6 by 2xsec Committed by Christian Brauner

list: fix indent

Signed-off-by: 's avatar2xsec <dh48.jeong@samsung.com>
parent 8b0e52e7
...@@ -154,14 +154,14 @@ static inline void lxc_list_del(struct lxc_list *list) ...@@ -154,14 +154,14 @@ static inline void lxc_list_del(struct lxc_list *list)
/* Return length of the list. */ /* Return length of the list. */
static inline size_t lxc_list_len(struct lxc_list *list) static inline size_t lxc_list_len(struct lxc_list *list)
{ {
size_t i = 0; size_t i = 0;
struct lxc_list *iter; struct lxc_list *iter;
lxc_list_for_each(iter, list) { lxc_list_for_each(iter, list) {
i++; i++;
} }
return i; return i;
} }
#endif /* __LXC_LIST_H */ #endif /* __LXC_LIST_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment