]> git.baikalelectronics.ru Git - kernel.git/commitdiff
net-sysfs: Fix inconsistent of format with argument type in net-sysfs.c
authorYe Bin <yebin10@huawei.com>
Wed, 30 Sep 2020 01:08:38 +0000 (09:08 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 2 Oct 2020 01:45:23 +0000 (18:45 -0700)
Fix follow warnings:
[net/core/net-sysfs.c:1161]: (warning) %u in format string (no. 1)
requires 'unsigned int' but the argument type is 'int'.
[net/core/net-sysfs.c:1162]: (warning) %u in format string (no. 1)
requires 'unsigned int' but the argument type is 'int'.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Ye Bin <yebin10@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/net-sysfs.c

index efec66fa78b70b2fe5b0a5920317eb1d0415d9e3..94fff0700bdd34173130d23b153d2bde7f37832e 100644 (file)
@@ -1158,8 +1158,8 @@ static ssize_t traffic_class_show(struct netdev_queue *queue,
         * belongs to the root device it will be reported with just the
         * traffic class, so just "0" for TC 0 for example.
         */
-       return dev->num_tc < 0 ? sprintf(buf, "%u%d\n", tc, dev->num_tc) :
-                                sprintf(buf, "%u\n", tc);
+       return dev->num_tc < 0 ? sprintf(buf, "%d%d\n", tc, dev->num_tc) :
+                                sprintf(buf, "%d\n", tc);
 }
 
 #ifdef CONFIG_XPS