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

Commit 099eb5cb authored by Harshal Ahire's avatar Harshal Ahire Committed by Gerrit - the friendly Code Review server
Browse files

dsp: fix compilation issue in q6lsm_callback function

Change format specifier for param_size requested
from adsp while printing.

Change-Id: I133b474de8567414c1d9cc1de99dbb9f6d45e58f
parent 5024c606
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ static int q6lsm_callback(struct apr_client_data *data, void *priv)
		}

		if (client->param_size != param_size) {
			pr_err("%s: response payload size %d mismatched with user requested %d\n",
			pr_err("%s: response payload size %d mismatched with user requested %zu\n",
			    __func__, param_size, client->param_size);
			ret = -EINVAL;
			goto done;