summaryrefslogtreecommitdiff
path: root/eigrpd/eigrp_main.c
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2020-02-10 18:49:06 -0300
committerGitHub <noreply@github.com>2020-02-10 18:49:06 -0300
commit4b08a72ed109220fa2ae43956b1e51f299b02471 (patch)
treedebf6789280ad8a235573a39cb6f0c416d53575c /eigrpd/eigrp_main.c
parentc2c4b412fa116cddbb7c6734fd8c4c7281c566f2 (diff)
parent95f7965d09a6eb4447c0de5a679114492cac3f37 (diff)
Merge pull request #5763 from ton31337/fix/return_without_parent
*: Remove parenthesis on return for constants
Diffstat (limited to 'eigrpd/eigrp_main.c')
-rw-r--r--eigrpd/eigrp_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_main.c b/eigrpd/eigrp_main.c
index 922c0fe3e7..add758fa21 100644
--- a/eigrpd/eigrp_main.c
+++ b/eigrpd/eigrp_main.c
@@ -229,5 +229,5 @@ int main(int argc, char **argv, char **envp)
frr_run(master);
/* Not reached. */
- return (0);
+ return 0;
}