mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-16 01:54:00 +00:00
[SCSI] iscsi: fix 64 bit compile warning
drivers/scsi/scsi_transport_iscsi.c: In function `show_transport_handle':
drivers/scsi/scsi_transport_iscsi.c💯 warning: long long unsigned int format, long unsigned int arg (arg 3)
is caused because uint64_t is only unsigned long on a 64 bit platform.
Fix this by casting to unsigned long long.
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
7ba2471389
commit
20e007b8cc
@ -97,7 +97,7 @@ static ssize_t
|
|||||||
show_transport_handle(struct class_device *cdev, char *buf)
|
show_transport_handle(struct class_device *cdev, char *buf)
|
||||||
{
|
{
|
||||||
struct iscsi_internal *priv = cdev_to_iscsi_internal(cdev);
|
struct iscsi_internal *priv = cdev_to_iscsi_internal(cdev);
|
||||||
return sprintf(buf, "%llu", iscsi_handle(priv->iscsi_transport));
|
return sprintf(buf, "%llu", (unsigned long long)iscsi_handle(priv->iscsi_transport));
|
||||||
}
|
}
|
||||||
static CLASS_DEVICE_ATTR(handle, S_IRUGO, show_transport_handle, NULL);
|
static CLASS_DEVICE_ATTR(handle, S_IRUGO, show_transport_handle, NULL);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user