diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-12-25 11:43:27 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-12-25 13:53:02 +0100 |
commit | fcd2db31c03e717d9f3b66f52af06ce60de46add (patch) | |
tree | 7c08ecbc880ef4f7fd7d764f8a5f05f040b0f738 /coccinelle | |
parent | coccinelle: fix the log-json rule (diff) | |
download | systemd-fcd2db31c03e717d9f3b66f52af06ce60de46add.tar.xz systemd-fcd2db31c03e717d9f3b66f52af06ce60de46add.zip |
coccinelle: properly drop braces around single-statement if()s
Diffstat (limited to 'coccinelle')
-rw-r--r-- | coccinelle/zz-drop-braces.cocci | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/coccinelle/zz-drop-braces.cocci b/coccinelle/zz-drop-braces.cocci index 8c3be01c1f..7a3382c9a7 100644 --- a/coccinelle/zz-drop-braces.cocci +++ b/coccinelle/zz-drop-braces.cocci @@ -1,28 +1,13 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ @@ position p : script:python() { p[0].file != "src/journal/lookup3.c" }; -identifier id; -expression e; +expression e,e1; @@ -if (...) -- { +- if (e) { ++ if (e) ( - id@p(...); + e1@p; | - e@p; -) -- } - -@@ -position p : script:python() { p[0].file != "src/journal/lookup3.c" }; -identifier id; -expression e; -@@ -if (...) -- { -( - return id@p(...); -| - return e@p; + return e1@p; ) - } |