mirror of
https://xff.cz/git/u-boot/
synced 2025-10-27 00:24:09 +01:00
cmd_nvedit.c: make error message more helpful
When calling getenv_f() with a too small buffer, it would print an error message like this: env_buf too small [32] This is not really helpful as it does not give any indication which of the calls might have failed. Change this into: env_buf [32 bytes] too small for value of "hwconfig" so we know at least which variable caused the overflow; this usually allows to quickly find the related code as well. Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
@@ -532,7 +532,8 @@ int getenv_f(char *name, char *buf, unsigned len)
|
|||||||
if (n)
|
if (n)
|
||||||
*--buf = '\0';
|
*--buf = '\0';
|
||||||
|
|
||||||
printf("env_buf too small [%d]\n", len);
|
printf("env_buf [%d bytes] too small for value of \"%s\"\n",
|
||||||
|
len, name);
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user