scsi: qla4xxx: Fix inconsistent format argument type
authorYe Bin <yebin10@huawei.com>
Wed, 30 Sep 2020 02:22:28 +0000 (10:22 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Thu, 8 Oct 2020 03:50:04 +0000 (23:50 -0400)
Fix the following warning:

[drivers/scsi/qla4xxx/ql4_nx.c:3228]: (warning) %ld in format string (no. 1)
requires 'long' but the argument type is 'unsigned long'.

Link: https://lore.kernel.org/r/20200930022228.2840587-1-yebin10@huawei.com
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Ye Bin <yebin10@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla4xxx/ql4_nx.c

index 038e19b..4e3b589 100644 (file)
@@ -3226,7 +3226,7 @@ static void qla4_8xxx_uevent_emit(struct scsi_qla_host *ha, u32 code)
 
        switch (code) {
        case QL4_UEVENT_CODE_FW_DUMP:
-               snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld",
+               snprintf(event_string, sizeof(event_string), "FW_DUMP=%lu",
                         ha->host_no);
                break;
        default: