aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/memory/multiboot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/src/memory/multiboot.cpp')
-rw-r--r--arch/x86_64/src/memory/multiboot.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/src/memory/multiboot.cpp b/arch/x86_64/src/memory/multiboot.cpp
index 91e7550..3f6248d 100644
--- a/arch/x86_64/src/memory/multiboot.cpp
+++ b/arch/x86_64/src/memory/multiboot.cpp
@@ -1,4 +1,4 @@
-#include "multiboot.hpp"
+#include "arch/memory/multiboot.hpp"
namespace teachos::arch::memory
{
@@ -34,7 +34,7 @@ namespace teachos::arch::memory
auto elf_section_header::is_null() const -> bool
{
- return name_table_index == 0U && type == elf_section_type::UNSPECIFIED &&
+ return name_table_index == 0U && type == elf_section_type::INACTIVE &&
flags == teachos::arch::memory::elf_section_flags{0U} && virtual_address == 0U && file_offset == 0U &&
additional_information == 0U && address_alignment == 0U && fixed_table_entry_size == 0U;
}