diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2015-02-27 01:19:33 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-02-27 03:43:31 +0100 |
commit | 2bdbf32183fc6816cf34f4850e9fc5f070a34303 (patch) | |
tree | 8f8d831164a77de8bf85a8c29a04fe8228aea366 | |
parent | 0c591b6c92ded66bea5ed615796b0f8c1cd6b422 (diff) |
boot: efi - fix missing include
src/boot/efi/splash.c:312:9: warning: implicit declaration of function ‘graphics_mode’ [-Wimplicit-function-declaration]
err = graphics_mode(TRUE);
^
-rw-r--r-- | src/boot/efi/splash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/boot/efi/splash.c b/src/boot/efi/splash.c index 3f2aa27ddd..81d6439f43 100644 --- a/src/boot/efi/splash.c +++ b/src/boot/efi/splash.c @@ -19,6 +19,7 @@ #include <efilib.h> #include "util.h" +#include "graphics.h" #include "splash.h" struct bmp_file { |