* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi]

[GRUB_MACHINE_EFI && __i386__]: Fix typo.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-09-29 23:58:43 +02:00
parent 579940128b
commit aa438e6818
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi]
[GRUB_MACHINE_EFI && __i386__]: Fix typo.
2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
Fix coreboot compilation.

View file

@ -717,7 +717,7 @@ grub_multiboot_make_mbi (grub_uint32_t *target)
#if defined (GRUB_MACHINE_EFI) && defined (__i386__)
{
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi32 *) ptrorig;
struct multiboot_tag_efi32 *tag = (struct multiboot_tag_efi32 *) ptrorig;
tag->type = MULTIBOOT_TAG_TYPE_EFI32;
tag->size = sizeof (*tag);
tag->pointer = (grub_addr_t) grub_efi_system_table;