From 0d7f7c2fde377d9bf618d16aa230757f956f8191 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 24 Nov 2018 04:26:10 +0900 Subject: [PATCH] basic/list: fix minor coding style issue --- src/basic/list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic/list.h b/src/basic/list.h index b6132c21dfb..f7f97000e0a 100644 --- a/src/basic/list.h +++ b/src/basic/list.h @@ -15,8 +15,8 @@ /* Initialize the list's head */ #define LIST_HEAD_INIT(head) \ do { \ - (head) = NULL; } \ - while (false) + (head) = NULL; \ + } while (false) /* Initialize a list item */ #define LIST_INIT(name,item) \ -- 2.47.3