summaryrefslogtreecommitdiffstats
path: root/src/file_psd.c
diff options
context:
space:
mode:
authorChristophe Grenier <[email protected]>2015-04-11 14:23:16 +0200
committerChristophe Grenier <[email protected]>2015-04-11 14:23:16 +0200
commit67054372873f2ed5414da7fff1cb5744148289d6 (patch)
treea8cd9501bcfc1e1efec8ca6603e7f11b0ad2ec0c /src/file_psd.c
parentefc94ee87ac3b4e3ecf4fb3ab4adac2ef0a6278f (diff)
add gcc_struct attribute to all __packed__ structure
do not use fseeko() with mingw32 gcc compiler
Diffstat (limited to 'src/file_psd.c')
-rw-r--r--src/file_psd.c2
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)
{