* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix
typo in __i386__ conditional.
This commit is contained in:
parent
7835dfd3e8
commit
8f03f0b580
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2010-09-22 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/loader/multiboot_mbi2.c (GRUB_MACHINE_EFI): Add missing
|
* grub-core/loader/multiboot_mbi2.c (GRUB_MACHINE_EFI): Add missing
|
||||||
|
|
|
@ -715,7 +715,7 @@ grub_multiboot_make_mbi (grub_uint32_t *target)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined (GRUB_MACHINE_EFI) && __i386_
|
#if defined (GRUB_MACHINE_EFI) && __i386__
|
||||||
{
|
{
|
||||||
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi32 *) ptrorig;
|
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi32 *) ptrorig;
|
||||||
tag->type = MULTIBOOT_TAG_TYPE_EFI32;
|
tag->type = MULTIBOOT_TAG_TYPE_EFI32;
|
||||||
|
|
Loading…
Reference in a new issue