aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/multiboot2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/multiboot2.c b/src/multiboot2.c
index d3e4175..ea06e96 100644
--- a/src/multiboot2.c
+++ b/src/multiboot2.c
@@ -11,11 +11,11 @@ multiboot_strncpy(char *dest, const char *src, unsigned n)
}
__attribute__((section(".multiboot.text"))) void
-multiboot2_module(struct multiboot_tag_module *tag, boot_info_t *info)
+multiboot2_module(struct multiboot_tag_module *tag, boot_info_t *tag_info)
{
- info->module_start = tag->mod_start;
- info->module_end = tag->mod_end;
- multiboot_strncpy(info->module_cmdline, tag->cmdline, 64);
+ tag_info->module_start = tag->mod_start;
+ tag_info->module_end = tag->mod_end;
+ multiboot_strncpy(tag_info->module_cmdline, tag->cmdline, 64);
}
/**