summaryrefslogtreecommitdiffstats
path: root/tools/coccinelle/return_without_parenthesis.cocci
blob: 7097e87ddc7ac2728f80d69a6bd2c609fd047217 (plain)
1
2
3
4
5
6
7
8
9
// Do not apply only for ldpd daemon since it uses the BSD coding style,
// where parentheses on return is expected.

@@
constant c;
@@

- return (c);
+ return c;