Unverified Commit 3c841086 by Christian Brauner Committed by GitHub

Merge pull request #2557 from 2xsec/bugfix

list: fix indent
parents 06d390df ca9a2504
......@@ -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