1:255.13-alt1
[systemd_ALT.git] / coccinelle / zz-drop-braces.cocci
blob8c3be01c1f78617e3a655b0c1acd5046cc241794
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 @@
3 position p : script:python() { p[0].file != "src/journal/lookup3.c" };
4 identifier id;
5 expression e;
6 @@
7 if (...)
8 - {
10     id@p(...);
12     e@p;
14 - }
17 position p : script:python() { p[0].file != "src/journal/lookup3.c" };
18 identifier id;
19 expression e;
21 if (...)
22 - {
24     return id@p(...);
26     return e@p;
28 - }