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

Commit c13fffce authored by Shiraz Hashim's avatar Shiraz Hashim
Browse files

ASoC: msm: qdsp6v2: Use right qualifiers to print size_t variable



Use '%zu' qualifier to print size_t data types.

Change-Id: I99d6d85e1356e3d7c22c61c6670ff19c4aa49851
Signed-off-by: default avatarShiraz Hashim <shashim@codeaurora.org>
parent 3731122e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -373,7 +373,7 @@ int q6core_get_service_version(uint32_t service_id,

	svc_size = q6core_get_avcs_service_size(service_id);
	if (svc_size != size) {
		pr_err("%s: Expected size: %ld, Provided size: %ld",
		pr_err("%s: Expected size: %zu, Provided size: %zu",
		       __func__, svc_size, size);
		return -EINVAL;
	}