Revision: 2130
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2130
Author: phcoder
Date: 2009-04-19 20:38:46 +0000 (Sun, 19 Apr 2009)
Log Message:
-----------
2009-04-19 Vladimir Serbinenko <[email protected]>
Correct GPT definition
* include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
of "attrib" member
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/include/grub/gpt_partition.h
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-04-19 14:49:43 UTC (rev 2129)
+++ trunk/grub2/ChangeLog 2009-04-19 20:38:46 UTC (rev 2130)
@@ -1,3 +1,10 @@
+2009-04-19 Vladimir Serbinenko <[email protected]>
+
+ Correct GPT definition
+
+ * include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
+ of "attrib" member
+
2009-04-19 Felix Zielcke <[email protected]>
* INSTALL: Replace `autogen.sh' with `./autogen.sh'.
Modified: trunk/grub2/include/grub/gpt_partition.h
===================================================================
--- trunk/grub2/include/grub/gpt_partition.h 2009-04-19 14:49:43 UTC (rev
2129)
+++ trunk/grub2/include/grub/gpt_partition.h 2009-04-19 20:38:46 UTC (rev
2130)
@@ -64,7 +64,7 @@
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));