diff options
| author | 2018-02-17 21:21:16 +0100 | |
|---|---|---|
| committer | 2018-02-17 19:38:52 -0800 | |
| commit | 5c248d91cd5b7e9401e4393b2193ad44c32016bc (patch) | |
| tree | 6ecf145a0ee951e8c1dd94de075e9d854da32aae /core/linux.c | |
| parent | 36b8594ccea5f72fc24041eae6a0dc69a9b5bc51 (diff) | |
| download | subsurface-5c248d91cd5b7e9401e4393b2193ad44c32016bc.tar.gz | |
Coding-style: remove superfluous parentheses
Mostly replace "return (expression);" by "return expression;" and one
case of "function((parameter))" by "function(parameter)".
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/linux.c')
| -rw-r--r-- | core/linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/linux.c b/core/linux.c index de7991bc7..cbd71bcc8 100644 --- a/core/linux.c +++ b/core/linux.c @@ -228,5 +228,5 @@ void subsurface_console_exit(void) bool subsurface_user_is_root() { - return (geteuid() == 0); + return geteuid() == 0; } |