repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.13-alt1
[systemd_ALT.git]
/
coccinelle
/
zz-drop-braces.cocci
blob
8c3be01c1f78617e3a655b0c1acd5046cc241794
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
- {
9
(
10
id@p(...);
11
|
12
e@p;
13
)
14
- }
15
16
@@
17
position p : script:python() { p[0].file != "src/journal/lookup3.c" };
18
identifier id;
19
expression e;
20
@@
21
if (...)
22
- {
23
(
24
return id@p(...);
25
|
26
return e@p;
27
)
28
- }