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

Commit 1899dd7e authored by Deepak Kushwah's avatar Deepak Kushwah Committed by Gerrit - the friendly Code Review server
Browse files

msm: vidc: change format specifier for size_t



size_t is an unsigned integer. Change format specifier
to resolve compilation issues for 32 bit.

Change-Id: I4309335c7ad0c695081d446a3f90e84edbcf1e32
CRs-Fixed: 1096066
Signed-off-by: default avatarDeepak Kushwah <dkushwah@codeaurora.org>
parent a27b2f17
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ int vmem_allocate(size_t size, phys_addr_t *addr)
		goto exit;
	}
	if (!size) {
		pr_err("%s Invalid size %ld\n", __func__, size);
		pr_err("%s Invalid size %zu\n", __func__, size);
		rc = -EINVAL;
		goto exit;
	}