diff options
Diffstat (limited to 'src/arch/x86/gdt.c')
-rw-r--r-- | src/arch/x86/gdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/gdt.c b/src/arch/x86/gdt.c index f662edda3a..c81bd61cd5 100644 --- a/src/arch/x86/gdt.c +++ b/src/arch/x86/gdt.c @@ -49,7 +49,7 @@ static void move_gdt(int is_recovery) printk(BIOS_ERR, "Error: Could not relocate GDT.\n"); return; } - memcpy((void*)newgdt, &gdt, num_gdt_bytes); + memcpy((void *)newgdt, &gdt, num_gdt_bytes); } printk(BIOS_DEBUG, "Moving GDT to %p...", newgdt); |