Skip to content
Snippets Groups Projects
Commit a7c06cd3 authored by Kevin Smith's avatar Kevin Smith Committed by Heiko Schocher
Browse files

env_ubi.c: Correct pointer error in env load


The variable "buf" in this function is a char array, and the
function ubi_volume_read is expecting a char *.  In the call, the
address of the pointer is being taken, incorrectly passing a
char **.  The compiler warning was being silenced by the cast.
Remove the address operator and the cast.

Signed-off-by: default avatarKevin Smith <kevin.smith@elecsyscorp.com>
Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Tom Rini <trini@konsulko.com>
Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
Reviewed-by: default avatarHeiko Schocher <hs@denx.de>
parent 736d1746
No related branches found
No related tags found
No related merge requests found
...@@ -181,8 +181,7 @@ void env_relocate_spec(void) ...@@ -181,8 +181,7 @@ void env_relocate_spec(void)
return; return;
} }
if (ubi_volume_read(CONFIG_ENV_UBI_VOLUME, (void *)&buf, if (ubi_volume_read(CONFIG_ENV_UBI_VOLUME, buf, CONFIG_ENV_SIZE)) {
CONFIG_ENV_SIZE)) {
printf("\n** Unable to read env from %s:%s **\n", printf("\n** Unable to read env from %s:%s **\n",
CONFIG_ENV_UBI_PART, CONFIG_ENV_UBI_VOLUME); CONFIG_ENV_UBI_PART, CONFIG_ENV_UBI_VOLUME);
set_default_env(NULL); set_default_env(NULL);
......
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