diff options
| author | Quentin Young <qlyoung@users.noreply.github.com> | 2022-08-19 10:16:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-19 10:16:56 -0400 |
| commit | 7205c3bb19139c40dff6f0c3082e82c57ef88645 (patch) | |
| tree | db33427aeab8ae5469f02941f2827a892664a5d4 | |
| parent | 66b974b423fa26c11d7970af37aebfba7a9210b7 (diff) | |
| parent | 366eb2d0865d781250798d7bc9a9678fc75c9fe8 (diff) | |
Merge pull request #11832 from sigeryang/master
zebra: trim unused tc dplane result values
| -rw-r--r-- | zebra/zebra_dplane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index 5a816a4c19..6a691a222f 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -3512,7 +3512,7 @@ dplane_route_update_internal(struct route_node *rn, static enum zebra_dplane_result dplane_tc_update_internal(enum dplane_op_e op) { enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE; - int ret = EINVAL; + int ret; struct zebra_dplane_ctx *ctx = NULL; /* Obtain context block */ |
