diff options
| author | Stephen Worley <sworley@cumulusnetworks.com> | 2019-09-03 16:12:06 -0400 |
|---|---|---|
| committer | Stephen Worley <sworley@cumulusnetworks.com> | 2019-10-25 11:13:43 -0400 |
| commit | fec211ad95a3a2967e72d49ab3036ae01e4b3762 (patch) | |
| tree | 29de213163e289c2acdf858c3713bf17ce924117 /zebra/zebra_mpls.c | |
| parent | e9f6516243f58a856bc467a2ca95730cb7cabfc7 (diff) | |
zebra: Zebra nexthop group re-work checkpatch fixes
Checkpatch fixes for the zebra nexthop group re-work.
Signed-off-by: Stephen Worley <sworley@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_mpls.c')
| -rw-r--r-- | zebra/zebra_mpls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_mpls.c b/zebra/zebra_mpls.c index 42d8c70f49..331ca44c67 100644 --- a/zebra/zebra_mpls.c +++ b/zebra/zebra_mpls.c @@ -2669,7 +2669,7 @@ int mpls_ftn_update(int add, struct zebra_vrf *zvrf, enum lsp_types_t type, nexthops_free(new_grp.nexthop); - return (found ? 0 : -1); + return found ? 0 : -1; } int mpls_ftn_uninstall(struct zebra_vrf *zvrf, enum lsp_types_t type, |
