diff options
Diffstat (limited to 'src/file_psd.c')
-rw-r--r-- | src/file_psd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file_psd.c b/src/file_psd.c index ed1c347e..0237da34 100644 --- a/src/file_psd.c +++ b/src/file_psd.c @@ -61,7 +61,7 @@ struct psd_file_header uint32_t width; /* max of 30,000 */ uint16_t depth; /* 1, 8, 16 or 32 */ uint16_t color_mode; /* Bitmap = 0; Grayscale = 1; Indexed = 2; RGB = 3; CMYK = 4; Multichannel = 7; Duotone = 8; Lab = 9 */ -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static int header_check_psd(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) { |