commit | dff75802f45f85db0afe3d4fd64cd66f71e52691 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Sat Apr 01 08:09:34 2023 +0200 |
committer | Tom Rini <trini@konsulko.com> | Thu Apr 06 19:10:08 2023 -0400 |
tree | aef0b17d3848465572415f9438801c6da7f83792 | |
parent | 5e0aa81b28d6352d29ecc0e6c37ae73371d221dd [diff] |
tools: avoid implicit fallthrough in fdt_add_pubkey When building with -Wimplicit-fallthrough we get a warning tools/fdt_add_pubkey.c:52:25: warning: this statement may fall through [-Wimplicit-fallthrough=] 52 | print_help(); | Explicitly declare which functions don't return. Fixes: 30238e99619c ("tools: add fdt_add_pubkey") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>