summaryrefslogtreecommitdiff
path: root/coccinelle
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-12-24 19:21:16 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2021-12-25 00:47:37 +0900
commitcbf8fc90d50733e9096f73d590541213aa158c26 (patch)
tree7cd436c4903334f525d1458f202bd1e8e29befe3 /coccinelle
parent9bcf483b117b23ae25bf4a5d39ddc3eade8659a6 (diff)
downloadsystemd-cbf8fc90d50733e9096f73d590541213aa158c26.tar.gz
list: drop unnecessary line continuation
Fixes #21886.
Diffstat (limited to 'coccinelle')
-rw-r--r--coccinelle/macros.h2
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) \