Skip to content
Snippets Groups Projects
Commit 6c5ab376 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: vstusb: fix compiler warning on x86-64


This fixes a reported compiler warning.

Reported-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 58e20d8d
No related branches found
No related tags found
No related merge requests found
...@@ -620,7 +620,7 @@ static long vstusb_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -620,7 +620,7 @@ static long vstusb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
__func__); __func__);
retval = -EFAULT; retval = -EFAULT;
} else { } else {
dev_dbg(&dev->dev, "%s: recv %d bytes from pipe %d\n", dev_dbg(&dev->dev, "%s: recv %zd bytes from pipe %d\n",
__func__, usb_data.count, usb_data.pipe); __func__, usb_data.count, usb_data.pipe);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment