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

Commit bf583a85 authored by Arun KS's avatar Arun KS
Browse files

msm: mhi_dev: mhi_uci.c: Fix uci_log() formatting error



This patch changes '%d' to '%lu' to match their data types.

Change-Id: I1d766e60ece7d58b21b14ba97c5de1f3ebc2b57e
Signed-off-by: default avatarArun KS <arunks@codeaurora.org>
parent 65119ded
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1211,7 +1211,7 @@ static ssize_t mhi_uci_client_write(struct file *file,

	if (count > TRB_MAX_DATA_SIZE) {
		uci_log(UCI_DBG_ERROR,
			"Too big write size: %d, max supported size is %d\n",
			"Too big write size: %lu, max supported size is %d\n",
			count, TRB_MAX_DATA_SIZE);
		return -EFBIG;
	}