summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/strv.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shared/strv.h b/src/shared/strv.h
index 571ea38a7f..cccf2e6a92 100644
--- a/src/shared/strv.h
+++ b/src/shared/strv.h
@@ -75,8 +75,9 @@ bool strv_overlap(char **a, char **b) _pure_;
for ((s) = (l); (s) && *(s); (s)++)
#define STRV_FOREACH_BACKWARDS(s, l) \
- STRV_FOREACH(s, l) ; \
- for ((s)--; (l) && ((s) >= (l)); (s)--)
+ STRV_FOREACH(s, l) \
+ ; \
+ for ((s)--; (l) && ((s) >= (l)); (s)--)
#define STRV_FOREACH_PAIR(x, y, l) \
for ((x) = (l), (y) = (x+1); (x) && *(x) && *(y); (x) += 2, (y) = (x + 1))