diff options
author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-09 13:21:56 +0100 |
---|---|---|
committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-09 13:21:56 +0100 |
commit | 95f7965d09a6eb4447c0de5a679114492cac3f37 (patch) | |
tree | 1bfa78792b4f62934a483104e921f0bff5809590 /ripd/rip_main.c | |
parent | tools: Add coccinelle script to remove parenthesis on return (diff) | |
download | frr-95f7965d09a6eb4447c0de5a679114492cac3f37.tar.xz frr-95f7965d09a6eb4447c0de5a679114492cac3f37.zip |
*: Remove parenthesis on return for constants
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'ripd/rip_main.c')
-rw-r--r-- | ripd/rip_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c index 060bb7658..23ac07a75 100644 --- a/ripd/rip_main.c +++ b/ripd/rip_main.c @@ -178,5 +178,5 @@ int main(int argc, char **argv) frr_run(master); /* Not reached. */ - return (0); + return 0; } |