Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> --- hw/i386/pc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 3fcf318a95..85d9454c71 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -93,12 +93,12 @@ struct e820_entry { uint64_t address; uint64_t length; uint32_t type; -} QEMU_PACKED __attribute((__aligned__(4))); +} QEMU_PACKED QEMU_ALIGNED(4); struct e820_table { uint32_t count; struct e820_entry entry[E820_NR_ENTRIES]; -} QEMU_PACKED __attribute((__aligned__(4))); +} QEMU_PACKED QEMU_ALIGNED(4); static struct e820_table e820_reserve; static struct e820_entry *e820_table; -- 2.15.1