* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix

typo in __i386__ conditional.
This commit is contained in:
Colin Watson 2010-09-22 16:57:49 +01:00
parent 7835dfd3e8
commit 8f03f0b580
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-09-22 Colin Watson <cjwatson@ubuntu.com>
* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix
typo in __i386__ conditional.
2010-09-22 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/multiboot_mbi2.c (GRUB_MACHINE_EFI): Add missing

View file

@ -715,7 +715,7 @@ grub_multiboot_make_mbi (grub_uint32_t *target)
}
#endif
#if defined (GRUB_MACHINE_EFI) && __i386_
#if defined (GRUB_MACHINE_EFI) && __i386__
{
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi32 *) ptrorig;
tag->type = MULTIBOOT_TAG_TYPE_EFI32;