summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/mpls.h2
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;
}
}