diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-12-24 11:21:16 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-12-24 16:47:37 +0100 |
commit | cbf8fc90d50733e9096f73d590541213aa158c26 (patch) | |
tree | 7cd436c4903334f525d1458f202bd1e8e29befe3 /coccinelle | |
parent | meson: fix build with -Dcryptolib=openssl -Ddns-over-tls=false (diff) | |
download | systemd-cbf8fc90d50733e9096f73d590541213aa158c26.tar.xz systemd-cbf8fc90d50733e9096f73d590541213aa158c26.zip |
list: drop unnecessary line continuation
Fixes #21886.
Diffstat (limited to 'coccinelle')
-rw-r--r-- | coccinelle/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coccinelle/macros.h b/coccinelle/macros.h index 0be4aaea42..6a0a64bb05 100644 --- a/coccinelle/macros.h +++ b/coccinelle/macros.h @@ -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) \ |