Remove parentheses around return arguments
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 13 May 2017 12:41:48 +0000 (14:41 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 13 May 2017 14:19:02 +0000 (16:19 +0200)
They don't do any harm but they are not really needed either.
Contributors are not used to following this style, and reviewers have to
keep pointing it out in reviews. This takes up valuable time for both
the contributor and the reviewer and distracts from the more important
issues.

I used the following Coccinelle patch:

@@
expression e;
@@
- return (e);
+ return e;

spatch is having trouble with some files so I have cleaned up the rest
with a few regexes.


No differences found