diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/boot/gdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/boot/gdt.c b/src/arch/x86/boot/gdt.c index e13d3bc4da..44156ea3f6 100644 --- a/src/arch/x86/boot/gdt.c +++ b/src/arch/x86/boot/gdt.c @@ -32,7 +32,7 @@ struct gdtarg { /* Copy GDT to new location and reload it. * FIXME: We only do this for BSP CPU. */ -static void move_gdt(void) +static void move_gdt(int is_recovery) { void *newgdt; u16 num_gdt_bytes = (u32)&gdt_end - (u32)&gdt; |