From: Colin Watson Date: Fri, 2 Jul 2010 12:42:18 +0000 (+0100) Subject: * kern/efi/init.c (grub_efi_init): set_watchdog_timer takes four X-Git-Tag: 1.99~769 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47695765a475d114590f94fadcb8cc55acac3824;p=thirdparty%2Fgrub.git * kern/efi/init.c (grub_efi_init): set_watchdog_timer takes four arguments, not three. --- diff --git a/ChangeLog b/ChangeLog index fc139b4ca..a8c5b4503 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-07-02 Colin Watson + + * kern/efi/init.c (grub_efi_init): set_watchdog_timer takes four + arguments, not three. + 2010-07-02 Colin Watson * util/grub-mkconfig_lib.in (uses_abstraction): New function. diff --git a/kern/efi/init.c b/kern/efi/init.c index d8a85eddf..c124aa292 100644 --- a/kern/efi/init.c +++ b/kern/efi/init.c @@ -36,8 +36,8 @@ grub_efi_init (void) /* Initialize the memory management system. */ grub_efi_mm_init (); - efi_call_3 (grub_efi_system_table->boot_services->set_watchdog_timer, - 0, 0, 0); + efi_call_4 (grub_efi_system_table->boot_services->set_watchdog_timer, + 0, 0, 0, NULL); grub_efidisk_init (); }