]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
basic/list: fix minor coding style issue 10910/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 23 Nov 2018 19:26:10 +0000 (04:26 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 23 Nov 2018 19:26:10 +0000 (04:26 +0900)
src/basic/list.h

index b6132c21dfb4da23260b570678ada2fb12813bec..f7f97000e0a2e0e15b0b9628238096e2980bc40b 100644 (file)
@@ -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)                                            \