aboutsummaryrefslogtreecommitdiff
path: root/util/cbfstool/lz4/lib/xxhash.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool/lz4/lib/xxhash.c')
-rw-r--r--util/cbfstool/lz4/lib/xxhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/lz4/lib/xxhash.c b/util/cbfstool/lz4/lib/xxhash.c
index 511d9941a2..ed9f8ed2e9 100644
--- a/util/cbfstool/lz4/lib/xxhash.c
+++ b/util/cbfstool/lz4/lib/xxhash.c
@@ -146,7 +146,7 @@ static U64 XXH_read64(const void* memPtr) { return *(const U64*) memPtr; }
/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */
/* currently only defined for gcc and icc */
-typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign;
+typedef union { U32 u32; U64 u64; } __packed unalign;
static U32 XXH_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
static U64 XXH_read64(const void* ptr) { return ((const unalign*)ptr)->u64; }