commit | 7d840627ca38d775107dc9480f4d14ce236f95ce | [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 | 8925f0ee7ee4efd4d76ff1e5c119af154d5d104a [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>