]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix
authorColin Watson <cjwatson@ubuntu.com>
Wed, 22 Sep 2010 15:57:49 +0000 (16:57 +0100)
committerColin Watson <cjwatson@ubuntu.com>
Wed, 22 Sep 2010 15:57:49 +0000 (16:57 +0100)
typo in __i386__ conditional.

ChangeLog
grub-core/loader/multiboot_mbi2.c

index 70588bf173994c654f7779de895535e5c33cacbd..1785473599a9653ab6fd084311fa2b19be1b56f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 6e1d5c8be6839806a20bd4219fd836e8ab6d5b2c..a20c82cad2722dbdab0ef34a756a7b478f5c74e1 100644 (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;