diff options
author | Freya Murphy <freya@freyacat.org> | 2024-02-03 22:06:39 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-02-03 22:06:39 -0500 |
commit | a717dbdd0087f9ce45f0a474211e760d1467013f (patch) | |
tree | c5dc35ec4f7b7107bf73d258ad6e4861cae9a031 /src/arch/amd64/mboot.c | |
parent | print registers on fatal exception (diff) | |
download | corn-a717dbdd0087f9ce45f0a474211e760d1467013f.tar.gz corn-a717dbdd0087f9ce45f0a474211e760d1467013f.tar.bz2 corn-a717dbdd0087f9ce45f0a474211e760d1467013f.zip |
fix acpi on uefi, kprint fixes
Diffstat (limited to 'src/arch/amd64/mboot.c')
-rw-r--r-- | src/arch/amd64/mboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/amd64/mboot.c b/src/arch/amd64/mboot.c index 606c888..9fd7fc2 100644 --- a/src/arch/amd64/mboot.c +++ b/src/arch/amd64/mboot.c @@ -184,7 +184,7 @@ static void read_memory_map( type = segment_type[6]; else type = segment_type[seg->type]; - kprintf("ADDR: 0x%16p LEN: %4s TYPE: %s (%d)\n", + kprintf("ADDR: %16p LEN: %4s TYPE: %s (%d)\n", (void *)seg->addr, btoa(seg->len, buf), type, |