]> git.proxmox.com Git - grub2.git/commitdiff
2009-04-19 Vladimir Serbinenko <phcoder@gmail.com>
authorphcoder <phcoder@localhost>
Sun, 19 Apr 2009 20:38:46 +0000 (20:38 +0000)
committerphcoder <phcoder@localhost>
Sun, 19 Apr 2009 20:38:46 +0000 (20:38 +0000)
Correct GPT definition

* include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
of "attrib" member

ChangeLog
include/grub/gpt_partition.h

index ec5d64938ed58d9bac5487f13e307d1e1819a8ed..ca0ab43ed2cf21c9b642b764c47231e9c0619492 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-04-19  Vladimir Serbinenko <phcoder@gmail.com>
+
+       Correct GPT definition
+
+       * include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type 
+       of "attrib" member
+
 2009-04-19  Felix Zielcke  <fzielcke@z-51.de>
 
        * INSTALL: Replace `autogen.sh' with `./autogen.sh'.
index 0244530f7cd6d6e2a30fe9c162f339d862970a68..428ceb16662e18ee7fa65aa976802769f8e41885 100644 (file)
@@ -64,7 +64,7 @@ struct grub_gpt_partentry
   grub_uint8_t guid[16];
   grub_uint64_t start;
   grub_uint64_t end;
-  grub_uint8_t attrib;
+  grub_uint64_t attrib;
   char name[72];
 } __attribute__ ((packed));