Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5494f95b authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman
Browse files

staging: unisys: Fix format string mismatch in virthba.c



Fix format string mismatch in info_proc_read() within virthba.c.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b7b1462e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1400,7 +1400,7 @@ info_proc_read(struct file *file, char __user *buf, size_t len, loff_t *offset)
		virthbainfo = VirtHbasOpen[i].virthbainfo;
		length += sprintf(vbuf + length, "CHANSOCK is not defined.\n");

		length += sprintf(vbuf + length, "MaxBuffLen:%d\n", MaxBuffLen);
		length += sprintf(vbuf + length, "MaxBuffLen:%u\n", MaxBuffLen);

		length += sprintf(vbuf + length, "\nvirthba result queue poll wait:%d usecs.\n",
				  rsltq_wait_usecs);