Commit 7f71e48c authored by David Binder's avatar David Binder Committed by Greg Kroah-Hartman

staging: unisys: visorbus: modify format string to match argument

Modifies the format string of snprintf to expect an unsigned int
instead of a signed one, per the supplied argument.
Signed-off-by: default avatarDavid Binder <david.binder@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <Timothy.Sell@unisys.com>
Acked-By: default avatarNeil Horman <nhorman@tuxdriver.com>
Reviewed-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cc9b8ed9
...@@ -433,7 +433,7 @@ static ssize_t client_bus_info_show(struct device *dev, ...@@ -433,7 +433,7 @@ static ssize_t client_bus_info_show(struct device *dev,
if (vdev->name) if (vdev->name)
partition_name = vdev->name; partition_name = vdev->name;
shift = snprintf(pos, remain, shift = snprintf(pos, remain,
"Client device / client driver info for %s eartition (vbus #%d):\n", "Client device / client driver info for %s eartition (vbus #%u):\n",
partition_name, vdev->chipset_dev_no); partition_name, vdev->chipset_dev_no);
pos += shift; pos += shift;
remain -= shift; remain -= shift;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment