commit | 90c9d04d51cf894f21f9ea17fd5e5d7b73e0c2af | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Sat May 09 17:59:19 2020 +0200 |
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | Sun May 10 00:01:12 2020 +0200 |
tree | 222b98e146dfef710631d71ec35dc5cd84232cc0 | |
parent | ceee09de101b792773eebb91848493ae2f5942f0 [diff] |
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: 59df7e7e77e7 ("cmd: add efidebug command") Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>