diff options
author | Christophe Grenier <[email protected]> | 2015-04-11 14:23:16 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2015-04-11 14:23:16 +0200 |
commit | 67054372873f2ed5414da7fff1cb5744148289d6 (patch) | |
tree | a8cd9501bcfc1e1efec8ca6603e7f11b0ad2ec0c /src/file_spe.c | |
parent | efc94ee87ac3b4e3ecf4fb3ab4adac2ef0a6278f (diff) |
add gcc_struct attribute to all __packed__ structure
do not use fseeko() with mingw32 gcc compiler
Diffstat (limited to 'src/file_spe.c')
-rw-r--r-- | src/file_spe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file_spe.c b/src/file_spe.c index eae09ceb..0318d6f5 100644 --- a/src/file_spe.c +++ b/src/file_spe.c @@ -236,7 +236,7 @@ struct header_spe char Istring[40]; /* 3978 special Intensity scaling string */ char empty3[80]; /* 4018 empty block to reach 4100 bytes */ int16_t lastvalue; /* 4098 Always the LAST value in the header */ -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static const unsigned char spe_header[4]= {0x67, 0x45, 0x23, 0x01}; |