]> git.baikalelectronics.ru Git - kernel.git/commit
scsi: libfc: Fix a format specifier
authorBart Van Assche <bvanassche@acm.org>
Thu, 15 Apr 2021 22:08:13 +0000 (15:08 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 16 Apr 2021 02:44:40 +0000 (22:44 -0400)
commitdca8032cffaff71722e9d0790235fca61fe9f003
treeea01e52df8cf02f1d77617b569599a0d20b41563
parent4977d3f865bd04f5fe9d6ec7fb477cc0b5fe52ad
scsi: libfc: Fix a format specifier

Since the 'mfs' member has been declared as 'u32' in include/scsi/libfc.h,
use the %u format specifier instead of %hu. This patch fixes the following
clang compiler warning:

warning: format specifies type
      'unsigned short' but the argument has type 'u32' (aka 'unsigned int')
      [-Wformat]
                             "lport->mfs:%hu\n", mfs, lport->mfs);
                                         ~~~          ^~~~~~~~~~
                                         %u

Link: https://lore.kernel.org/r/20210415220826.29438-8-bvanassche@acm.org
Cc: Hannes Reinecke <hare@suse.de>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/libfc/fc_lport.c