commit | 1e9fa496b677b4e17efc0bfc6769b2dc1df5c38a | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Fri Feb 10 08:09:40 2023 +0100 |
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Fri Feb 10 13:05:40 2023 +0100 |
tree | c8590a965bd92448ef8fa7982433be74cdfbb7b0 | |
parent | 323bfa5e7019f1057e577ec66d2812a20e6a61f4 [diff] |
efi_loader: make get_load_options() static In program initrddump.efi function get_load_options() can be static. This avoids a warning when building with 'make W=1': lib/efi_loader/initrddump.c:442:6: warning: no previous prototype for ‘get_load_options’ [-Wmissing-prototypes] 442 | u16 *get_load_options(void) | ^~~~~~~~~~~~~~~~ Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>