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_wim.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_wim.c')
-rw-r--r-- | src/file_wim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file_wim.c b/src/file_wim.c index d5f66f4c..cecee244 100644 --- a/src/file_wim.c +++ b/src/file_wim.c @@ -53,7 +53,7 @@ struct reshdr_disk_short }; uint64_t offset; uint64_t original_size; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); #define RESHDR_GET_SIZE(R) (le64(R.size) & 0x00FFFFFFFFFFFFFF) @@ -74,7 +74,7 @@ struct _WIMHEADER_V1_PACKED uint32_t dwBootIndex; struct reshdr_disk_short rhIntegrity; unsigned char bUnused[60]; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static int header_check_wim(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) { |