Message ID | 20220120211153.189476-3-stephen@networkplumber.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 9d5e29e60f54f095136a6b3a0b75443c7e70d086 |
Delegated to: | David Ahern |
Headers | show |
Series | fix clang warnings | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
diff --git a/include/utils.h b/include/utils.h index b6c468e9cc86..d644202cc529 100644 --- a/include/utils.h +++ b/include/utils.h @@ -261,7 +261,9 @@ int print_timestamp(FILE *fp); void print_nlmsg_timestamp(FILE *fp, const struct nlmsghdr *n); unsigned int print_name_and_link(const char *fmt, - const char *name, struct rtattr *tb[]); + const char *name, struct rtattr *tb[]) + __attribute__((format(printf, 1, 0))); + #define BIT(nr) (UINT64_C(1) << (nr))
One more format attribute needed to resolve clang warnings. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> --- include/utils.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)