vlan: use correct format characters
authorBill Wendling <morbo@google.com>
Wed, 16 Mar 2022 21:31:25 +0000 (14:31 -0700)
committerJakub Kicinski <kuba@kernel.org>
Thu, 17 Mar 2022 23:34:49 +0000 (16:34 -0700)
commit8624a95ecdea5ce6829bb42b0b9dcd8705961e04
tree93566f9d46c8a2dd9bf60515165121c5d627c031
parentc011072c90353814a9d8e2b3cd111e77ae8601ed
vlan: use correct format characters

When compiling with -Wformat, clang emits the following warning:

net/8021q/vlanproc.c:284:22: warning: format specifies type 'unsigned
short' but the argument has type 'int' [-Wformat]
                                   mp->priority, ((mp->vlan_qos >> 13) & 0x7));
                                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~

The types of these arguments are unconditionally defined, so this patch
updates the format character to the correct ones for ints and unsigned
ints.

Link: https://github.com/ClangBuiltLinux/linux/issues/378
Signed-off-by: Bill Wendling <morbo@google.com>
Link: https://lore.kernel.org/r/20220316213125.2353370-1-morbo@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/8021q/vlanproc.c