* loader/i386/pc/multiboot2.c (grub_mb2_arch_elf64_hook): Add
missing grub_error() call.
2008-03-30 Pavel Roskin <proski@gnu.org>
+ * loader/i386/pc/multiboot2.c (grub_mb2_arch_elf64_hook): Add
+ missing grub_error() call.
+
* util/update-grub_lib.in: Define datarootdir, since Autoconf
2.60 and newer uses it to define datadir.
if ((paddr < grub_os_area_addr)
|| (paddr + phdr->p_memsz > grub_os_area_addr + grub_os_area_size))
- return (GRUB_ERR_OUT_OF_RANGE,"Address 0x%x is out of range",
- paddr);
+ return grub_error (GRUB_ERR_OUT_OF_RANGE, "Address 0x%x is out of range",
+ paddr);
return GRUB_ERR_NONE;
}