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
This commit is contained in:
phcoder 2009-04-19 20:38:46 +00:00
parent c6c5219fb6
commit 0aefc632d9
2 changed files with 8 additions and 1 deletions

View File

@ -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'.

View 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));