diff options
author | Joursoir <chat@joursoir.net> | 2021-11-15 19:13:58 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-11-15 19:13:58 +0300 |
commit | 23e1ba577f9116bd857b58c91682f86bdd5d50a5 (patch) | |
tree | 76ce44532c23b95f3f7900d7ae28914fc3d5d616 | |
parent | edd62f8e7d00b56bd19217b56d0d2cdf3ef6c945 (diff) | |
download | ufm-23e1ba577f9116bd857b58c91682f86bdd5d50a5.tar.gz ufm-23e1ba577f9116bd857b58c91682f86bdd5d50a5.tar.bz2 ufm-23e1ba577f9116bd857b58c91682f86bdd5d50a5.zip |
menu-bar: fix include header paths
-rw-r--r-- | Library/UefiShellUfmCommandLib/menu-bar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/UefiShellUfmCommandLib/menu-bar.c b/Library/UefiShellUfmCommandLib/menu-bar.c index db7af38..ff1ac7e 100644 --- a/Library/UefiShellUfmCommandLib/menu-bar.c +++ b/Library/UefiShellUfmCommandLib/menu-bar.c @@ -1,7 +1,7 @@ #include <Library/DebugLib.h> -#include "lib/tbi/screen.h" -#include "lib/tbi/win.h" +#include "tbi/screen.h" +#include "tbi/win.h" #include "menu-bar.h" struct window *menubar = NULL; |