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 /bgpd/bgp_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 'bgpd/bgp_main.c')
-rw-r--r-- | bgpd/bgp_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c index 74e561c74..c4ece2f08 100644 --- a/bgpd/bgp_main.c +++ b/bgpd/bgp_main.c @@ -493,5 +493,5 @@ int main(int argc, char **argv) frr_run(bm->master); /* Not reached. */ - return (0); + return 0; } |