fix error "Chunk is too large" with gcc >=4.7.0 / mingw64

pull/83/head
abma 2013-08-29 06:31:10 +02:00
parent 27727f692b
commit 169e5b9f35
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
# pragma pack(push,1)
# define PACK_STRUCT
#elif defined( __GNUC__ )
# define PACK_STRUCT __attribute__((packed))
# define PACK_STRUCT __attribute__((gcc_struct, __packed__))
#else
# error Compiler not supported
#endif