From d3909a21148ea49718d00f42c14b0b9bb0e07182 Mon Sep 17 00:00:00 2001 From: Stephen Worley Date: Fri, 9 Dec 2022 19:02:03 -0500 Subject: [PATCH] lib: remove unneeded parans on labl2str return Remove unneeded parans on labl2str return. Signed-off-by: Stephen Worley --- lib/mpls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }