diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2020-02-10 22:49:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 22:49:06 +0100 |
commit | 4b08a72ed109220fa2ae43956b1e51f299b02471 (patch) | |
tree | debf6789280ad8a235573a39cb6f0c416d53575c /ripd/rip_main.c | |
parent | Merge pull request #5776 from volta-networks/fix_ldp_topol_test (diff) | |
parent | *: Remove parenthesis on return for constants (diff) | |
download | frr-4b08a72ed109220fa2ae43956b1e51f299b02471.tar.xz frr-4b08a72ed109220fa2ae43956b1e51f299b02471.zip |
Merge pull request #5763 from ton31337/fix/return_without_parent
*: Remove parenthesis on return for constants
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 ca41afaea..73e94deef 100644 --- a/ripd/rip_main.c +++ b/ripd/rip_main.c @@ -180,5 +180,5 @@ int main(int argc, char **argv) frr_run(master); /* Not reached. */ - return (0); + return 0; } |