Skip to content
Snippets Groups Projects
Commit a92181b3 authored by Simon Glass's avatar Simon Glass
Browse files

x86: Fix warning in cmd_ximg.c when CONFIG_GZIP is not defined


This local variable is not used unless CONFIG_GZIP is defined. Fix it.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent fb7db41c
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,9 @@ do_imgextract(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
const void *fit_data;
size_t fit_len;
#endif
#ifdef CONFIG_GZIP
uint unc_len = CONFIG_SYS_XIMG_LEN;
#endif
uint8_t comp;
verify = getenv_yesno("verify");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment