Unverified Commit ca9a2504 by 2xsec

list: fix indent

Signed-off-by: 's avatar2xsec <dh48.jeong@samsung.com>
parent 06d390df
......@@ -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 */
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