Remove parentheses from return statements

No reason to use "return (x);" here. Refer to the GNU coding guidelines
for details. Created using following semantic patch:

    @@
    expression expr;
    @@

    - return (expr);
    + return expr;

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2011-11-02 19:30:54 +01:00
parent ce3f0ce76f
commit 6f01c7af97
14 changed files with 80 additions and 80 deletions

View File

@@ -319,7 +319,7 @@ wanted_page (int ch)
break;
}
return (page);
return page;
}
/* Draws the help screen */