1
0
mirror of https://github.com/systemd/systemd synced 2024-07-03 08:29:25 +00:00

list: drop unnecessary line continuation

Fixes #21886.
This commit is contained in:
Yu Watanabe 2021-12-24 19:21:16 +09:00
parent 9bcf483b11
commit cbf8fc90d5
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@
} while (false)
#define LIST_JUST_US(name,item) \
(!(item)->name##_prev && !(item)->name##_next) \
(!(item)->name##_prev && !(item)->name##_next)
#define LIST_FOREACH(name,i,head) \
for ((i) = (head); (i); (i) = (i)->name##_next)
#define LIST_FOREACH_SAFE(name,i,n,head) \

View File

@ -134,7 +134,7 @@
} while (false)
#define LIST_JUST_US(name,item) \
(!(item)->name##_prev && !(item)->name##_next) \
(!(item)->name##_prev && !(item)->name##_next)
#define LIST_FOREACH(name,i,head) \
for ((i) = (head); (i); (i) = (i)->name##_next)