printf argument was missing, add it.
Signed-off-by: Ahmad Fatoum <[email protected]>
---
common/image-fit.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/common/image-fit.c b/common/image-fit.c
index 82357731fa7a..3e6e7fbd6d12 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -625,7 +625,8 @@ int fit_open_image(struct fit_handle *handle, void
*configuration,
void *uc_data;
if (!IS_ENABLED(CONFIG_UNCOMPRESS)) {
- pr_err("image has compression = \"%s\", but support not
compiled in\n");
+ pr_err("image has compression = \"%s\", but support not
compiled in\n",
+ compression);
return -ENOSYS;
}
--
2.30.2