Add gcc_struct to all packed structures when compiling with mingw.

Just "packed" doesn't always pack the way we expect.
This commit is contained in:
Vladimir Serbinenko 2013-12-15 14:14:30 +01:00
parent ae8159b9ca
commit 7e47e27bd8
105 changed files with 403 additions and 391 deletions

View file

@ -38,13 +38,13 @@ struct grub_sun_partition_info
grub_uint8_t id;
grub_uint8_t spare2;
grub_uint8_t flags;
} __attribute__ ((packed));
} GRUB_PACKED;
struct grub_sun_partition_descriptor
{
grub_uint32_t start_cylinder;
grub_uint32_t num_sectors;
} __attribute__ ((packed));
} GRUB_PACKED;
struct grub_sun_block
{
@ -65,7 +65,7 @@ struct grub_sun_block
struct grub_sun_partition_descriptor partitions[8];
grub_uint16_t magic; /* Magic number. */
grub_uint16_t csum; /* Label xor'd checksum. */
} __attribute__ ((packed));
} GRUB_PACKED;
static struct grub_partition_map grub_sun_partition_map;