]> git.ipfire.org Git - thirdparty/zstd.git/commit
fix one minor alignment warning
authorYann Collet <cyan@fb.com>
Wed, 5 Feb 2025 23:46:44 +0000 (15:46 -0800)
committerYann Collet <cyan@fb.com>
Wed, 5 Feb 2025 23:46:44 +0000 (15:46 -0800)
commit32dff04d320c2dc667380076dff5d575fcf73207
tree330b739a7fe355bebb2e21675bc90ecaea30fc0c
parent5883ee6cc2303259f6a5ca824d9b9786c223df54
fix one minor alignment warning

seems like a prototype interface error:
input parameter should have been `const void*`,
since the documentation is explicit that input doesn't have to be aligned,
but `const __m256i*` makes the compiler enforce it.
lib/compress/zstd_compress.c