diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-17 13:44:55 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-17 14:10:42 -0400 |
commit | f8529d09bf1555c2dda61f5841b7ad4f42ce9715 (patch) | |
tree | 16e0cdede45741e945e663f72697665074b2b077 /kernel/mboot/mmap.c | |
parent | fmt (diff) | |
download | comus-f8529d09bf1555c2dda61f5841b7ad4f42ce9715.tar.gz comus-f8529d09bf1555c2dda61f5841b7ad4f42ce9715.tar.bz2 comus-f8529d09bf1555c2dda61f5841b7ad4f42ce9715.zip |
elf sym loading
Diffstat (limited to '')
-rw-r--r-- | kernel/mboot/mmap.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/mboot/mmap.c b/kernel/mboot/mmap.c index 8959c49..e0963ca 100644 --- a/kernel/mboot/mmap.c +++ b/kernel/mboot/mmap.c @@ -30,11 +30,9 @@ int mboot_get_mmap(struct memory_map *res) int idx = 0; uintptr_t i = (uintptr_t)mmap->entries; - char buf[20]; for (; i < (uintptr_t)mmap->entries + mmap->size; i += mmap->entry_size, idx++) { struct multiboot_mmap_entry *seg = (struct multiboot_mmap_entry *)i; - const char *type = NULL; res->entries[idx].addr = seg->addr; res->entries[idx].len = seg->len; res->entries[idx].type = seg->type; |