From 4550ce9be01dcdf451d74b0f6263d0c43e1377f1 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 14 Jan 2022 10:21:17 +0100 Subject: image-fit: Make string of algo parameter constant Modifications would be invalid. Signed-off-by: Jan Kiszka Reviewed-by: Simon Glass --- tools/image-host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/image-host.c') diff --git a/tools/image-host.c b/tools/image-host.c index 945571f584d..5b814ce7157 100644 --- a/tools/image-host.c +++ b/tools/image-host.c @@ -63,7 +63,7 @@ static int fit_image_process_hash(void *fit, const char *image_name, uint8_t value[FIT_MAX_HASH_LEN]; const char *node_name; int value_len; - char *algo; + const char *algo; int ret; node_name = fit_get_name(fit, noffset, NULL); @@ -160,7 +160,7 @@ static int fit_image_setup_sig(struct image_sign_info *info, const char *engine_id) { const char *node_name; - char *algo_name; + const char *algo_name; const char *padding_name; node_name = fit_get_name(fit, noffset, NULL); -- cgit v1.2.3