diff options
Diffstat (limited to 'src/file_ico.c')
-rw-r--r-- | src/file_ico.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file_ico.c b/src/file_ico.c index 645b48aa..0b100446 100644 --- a/src/file_ico.c +++ b/src/file_ico.c @@ -60,7 +60,7 @@ struct ico_header uint16_t reserved; uint16_t type; uint16_t count; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); struct ico_directory { @@ -72,7 +72,7 @@ struct ico_directory uint16_t bits_per_pixel; uint32_t bitmap_size; uint32_t bitmap_offset; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static int header_check_ico(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new) { |