]> git.ipfire.org Git - thirdparty/u-boot.git/commit
boot: superfluous assignment in bootflow_menu_new()
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sun, 7 Jan 2024 09:01:07 +0000 (10:01 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 18 Jan 2024 22:50:27 +0000 (17:50 -0500)
commit3a7744ed1e5bd61b0bf83b7e1897184cb1c54f3f
treedd8360486b60b018223fc2aab2dab4aa8deb6588
parent3f9312236a427db3bc11770ced4ed3c2b67d3c45
boot: superfluous assignment in bootflow_menu_new()

ret is assigned a value 0 which is never used but
is immediately overwritten in the next statement.

Addresses-Coverity-ID: 453304 ("Unused value")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
boot/bootflow_menu.c