From: Yu Watanabe Date: Fri, 23 Nov 2018 19:26:10 +0000 (+0900) Subject: basic/list: fix minor coding style issue X-Git-Tag: v240~223^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10910%2Fhead;p=thirdparty%2Fsystemd.git basic/list: fix minor coding style issue --- 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) \