Skip to content

Commit

Permalink
Update zstd_lazy.c
Browse files Browse the repository at this point in the history
  • Loading branch information
TrianglesPCT committed May 14, 2021
1 parent 0b9f4bb commit 69ac124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compress/zstd_lazy.c
Expand Up @@ -934,7 +934,7 @@ static ZSTD_Vec256 ZSTD_Vec256_read(const void* const ptr) {

static ZSTD_Vec256 ZSTD_Vec256_set8(BYTE val) {
ZSTD_Vec256 v;
v.v = _mm256_set1_epi8(val);
v.v = _mm256_set1_epi8((char)val);
return v;
}

Expand Down

0 comments on commit 69ac124

Please sign in to comment.