Skip to content

Commit

Permalink
Add some tabs in list.h
Browse files Browse the repository at this point in the history
  • Loading branch information
potados99 committed Jun 17, 2019
1 parent 8828d9d commit 69fb593
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/list.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ struct list_head name = LIST_HEAD_INIT(name)

#define LIST_HEAD_REINIT(name) \
do { \
(name).prev = &(name); \
(name).next = &(name); \
(name).prev = &(name); \
(name).next = &(name); \
} while (0)

static inline void INIT_LIST_HEAD(struct list_head *list)
Expand Down

0 comments on commit 69fb593

Please sign in to comment.