浏览代码

[SCSI] scsi_lib.c: fix warning in scsi_kmap_atomic_sg

drivers/scsi/scsi_lib.c: In function `scsi_kmap_atomic_sg':
drivers/scsi/scsi_lib.c:2394: warning: unsigned int format, different type arg (arg 3)
drivers/scsi/scsi_lib.c:2394: warning: unsigned int format, different type arg (arg 4)

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Andrew Morton 19 年之前
父节点
当前提交
169e1a2a8a
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      drivers/scsi/scsi_lib.c

+ 2 - 1
drivers/scsi/scsi_lib.c

@@ -2375,7 +2375,8 @@ void *scsi_kmap_atomic_sg(struct scatterlist *sg, int sg_count,
 	}
 	}
 
 
 	if (unlikely(i == sg_count)) {
 	if (unlikely(i == sg_count)) {
-		printk(KERN_ERR "%s: Bytes in sg: %u, requested offset %u, elements %d\n",
+		printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, "
+			"elements %d\n",
 		       __FUNCTION__, sg_len, *offset, sg_count);
 		       __FUNCTION__, sg_len, *offset, sg_count);
 		WARN_ON(1);
 		WARN_ON(1);
 		return NULL;
 		return NULL;