]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
list: fix indent 2557/head
author2xsec <dh48.jeong@samsung.com>
Tue, 21 Aug 2018 06:02:06 +0000 (15:02 +0900)
committer2xsec <dh48.jeong@samsung.com>
Tue, 21 Aug 2018 06:02:06 +0000 (15:02 +0900)
Signed-off-by: 2xsec <dh48.jeong@samsung.com>
src/lxc/list.h

index 9858081ab59006a8f927dc64ae53d5224ba9caf5..e3d409f2f4ff5fc6e7d2dd0400b37ac807e4540d 100644 (file)
@@ -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 */