summaryrefslogtreecommitdiff
path: root/kernel/mboot
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-21 16:44:18 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-21 16:44:18 -0400
commita0c8aa6aedc4177823e58a66793af57a57dfb56f (patch)
treec446a27331c1bf6ec115f61f4f38d170b251278c /kernel/mboot
parentfs read/write functions, initrd (diff)
downloadcomus-a0c8aa6aedc4177823e58a66793af57a57dfb56f.tar.gz
comus-a0c8aa6aedc4177823e58a66793af57a57dfb56f.tar.bz2
comus-a0c8aa6aedc4177823e58a66793af57a57dfb56f.zip
fmt, rename some fns
Diffstat (limited to 'kernel/mboot')
-rw-r--r--kernel/mboot/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/mboot/module.c b/kernel/mboot/module.c
index 7a64f2e..79d092e 100644
--- a/kernel/mboot/module.c
+++ b/kernel/mboot/module.c
@@ -20,5 +20,5 @@ void *mboot_get_initrd(size_t *len)
struct multiboot_tag_module *mod = (struct multiboot_tag_module *)tag;
*len = mod->mod_end - mod->mod_start;
- return (void*) (uintptr_t) mod->mod_start;
+ return (void *)(uintptr_t)mod->mod_start;
}