]> git.ipfire.org Git - thirdparty/zstd.git/commit
fix minor alignment warning
authorYann Collet <cyan@fb.com>
Thu, 6 Feb 2025 00:11:54 +0000 (16:11 -0800)
committerYann Collet <cyan@fb.com>
Thu, 6 Feb 2025 00:11:54 +0000 (16:11 -0800)
commitc39424ea87288aec400305c3bc3cf1ec6ef7d803
treecc70339c39268d114cb6f7a0638cd091947f652f
parent32dff04d320c2dc667380076dff5d575fcf73207
fix minor alignment warning

this is a prototype definition error:
`_mm_storeu_si128()` should accept a `void*` pointer,
since it explicitly states that it accepts unaligned addresses
yet requiring a `__m128i*` tells otherwise, and requires the compiler the enforce this alignment.
lib/compress/zstd_compress.c