diff options
Diffstat (limited to 'src/file_mov.c')
-rw-r--r-- | src/file_mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file_mov.c b/src/file_mov.c index 077f0ae4..4cc4b051 100644 --- a/src/file_mov.c +++ b/src/file_mov.c @@ -70,14 +70,14 @@ struct atom_struct { uint32_t size; uint32_t type; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); struct atom64_struct { uint32_t size1; uint32_t type; uint64_t size; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static void file_rename_mov(const char *old_filename) { |