]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi]
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 29 Sep 2010 21:58:43 +0000 (23:58 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 29 Sep 2010 21:58:43 +0000 (23:58 +0200)
[GRUB_MACHINE_EFI && __i386__]: Fix typo.

ChangeLog
grub-core/loader/multiboot_mbi2.c

index 4614a1cac85ab5aa68197ffac53ce11f8155126a..ec2db19362db52c6e2d4118864344925928fcfed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 75eaec33d73f6aa8858c772140a224d50ba894c8..3141f002887dcf45d7a3dd8d4200e36caff81a97 100644 (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;