net: tipc: Add __printf() markup to fix -Wsuggest-attribute=format
authorAndrew Lunn <andrew@lunn.ch>
Wed, 28 Oct 2020 00:38:49 +0000 (01:38 +0100)
committerJakub Kicinski <kuba@kernel.org>
Fri, 30 Oct 2020 18:31:46 +0000 (11:31 -0700)
net/tipc/netlink_compat.c: In function ‘tipc_tlv_sprintf’:
net/tipc/netlink_compat.c:137:2: warning: function ‘tipc_tlv_sprintf’ might be a candidate for ‘gnu_printf’ format attribute [-Wsuggest-attribute=format]
  137 |  n = vscnprintf(buf, rem, fmt, args);

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/tipc/netlink_compat.c

index 591a301..5c6206c 100644 (file)
@@ -118,7 +118,8 @@ static void tipc_tlv_init(struct sk_buff *skb, u16 type)
        skb_put(skb, sizeof(struct tlv_desc));
 }
 
-static int tipc_tlv_sprintf(struct sk_buff *skb, const char *fmt, ...)
+static __printf(2, 3) int tipc_tlv_sprintf(struct sk_buff *skb,
+                                          const char *fmt, ...)
 {
        int n;
        u16 len;