mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
cmd: efidebug: fix -Werror=type-limits warning
Compiling with -Wtype-limits yields:
cmd/efidebug.c:968:32: error: comparison is always false due to limited
range of data type [-Werror=type-limits]
968 | if (*endp != '\0' || bootnext > 0xffff) {
|
Remove the superfluous check.
Fixes: 59df7e7e77
("cmd: add efidebug command")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
de699187b5
commit
bdb15776f6
1 changed files with 1 additions and 1 deletions
|
@ -970,7 +970,7 @@ static int do_efi_boot_next(cmd_tbl_t *cmdtp, int flag,
|
|||
return CMD_RET_USAGE;
|
||||
|
||||
bootnext = (u16)simple_strtoul(argv[1], &endp, 16);
|
||||
if (*endp != '\0' || bootnext > 0xffff) {
|
||||
if (*endp) {
|
||||
printf("invalid value: %s\n", argv[1]);
|
||||
r = CMD_RET_FAILURE;
|
||||
goto out;
|
||||
|
|
Loading…
Add table
Reference in a new issue