1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-30 22:23:13 +03:00

fixed ISO C incompatibility

for good this time... probably
This commit is contained in:
Alex Murkoff
2024-04-13 02:37:13 +07:00
parent 4f41631aa4
commit 01cea2e1e2
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ static BYTE SEQ_randByte(unsigned* src)
SEQ_stream SEQ_initStream(unsigned seed)
{
SEQ_stream stream = {};
SEQ_stream stream;
stream.state = 0;
XXH64_reset(&stream.xxh, 0);
stream.seed = seed;