diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2020-02-10 18:49:06 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-10 18:49:06 -0300 |
| commit | 4b08a72ed109220fa2ae43956b1e51f299b02471 (patch) | |
| tree | debf6789280ad8a235573a39cb6f0c416d53575c /zebra/zebra_mpls_openbsd.c | |
| parent | c2c4b412fa116cddbb7c6734fd8c4c7281c566f2 (diff) | |
| parent | 95f7965d09a6eb4447c0de5a679114492cac3f37 (diff) | |
Merge pull request #5763 from ton31337/fix/return_without_parent
*: Remove parenthesis on return for constants
Diffstat (limited to 'zebra/zebra_mpls_openbsd.c')
| -rw-r--r-- | zebra/zebra_mpls_openbsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_mpls_openbsd.c b/zebra/zebra_mpls_openbsd.c index fcd476dc2c..5e18414985 100644 --- a/zebra/zebra_mpls_openbsd.c +++ b/zebra/zebra_mpls_openbsd.c @@ -302,7 +302,7 @@ static int kernel_lsp_cmd(struct zebra_dplane_ctx *ctx) } } - return (0); + return 0; } enum zebra_dplane_result kernel_lsp_update(struct zebra_dplane_ctx *ctx) |
