diff options
| author | Stephen Worley <sworley@nvidia.com> | 2022-12-09 19:02:03 -0500 |
|---|---|---|
| committer | Stephen Worley <sworley@nvidia.com> | 2023-02-13 18:12:05 -0500 |
| commit | d3909a21148ea49718d00f42c14b0b9bb0e07182 (patch) | |
| tree | 7a6ded858568d4d80676af227170a2e575c6222a /lib/mpls.h | |
| parent | 0bbad9d19aef7882bbf962560579db5fc446b0ab (diff) | |
lib: remove unneeded parans on labl2str return
Remove unneeded parans on labl2str return.
Signed-off-by: Stephen Worley <sworley@nvidia.com>
Diffstat (limited to 'lib/mpls.h')
| -rw-r--r-- | lib/mpls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mpls.h b/lib/mpls.h index 100d67e94b..069e560f80 100644 --- a/lib/mpls.h +++ b/lib/mpls.h @@ -233,7 +233,7 @@ static inline char *label2str(mpls_label_t label, enum lsp_types_t type, snprintf(buf, len, "Reserved (%u)", label); else snprintf(buf, len, "%u", label); - return (buf); + return buf; } } |
