Merge pull request #3929 from facebook/llu_vscode

fix LLU->ULL
This commit is contained in:
Yann Collet 2024-03-09 14:24:57 -08:00 committed by GitHub
commit cb596b024f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -531,7 +531,7 @@ static void test_decompressBound(unsigned tnb)
CHECK_EQ( ZSTD_flushStream(cctx, &out), 0 );
}
CHECK_EQ( ZSTD_endStream(cctx, &out), 0 );
CHECK( ZSTD_decompressBound(outBuffer, out.pos) > 0x100000000LLU /* 4 GB */ );
CHECK( ZSTD_decompressBound(outBuffer, out.pos) > 0x100000000ULL /* 4 GB */ );
ZSTD_freeCCtx(cctx);
free(outBuffer);
}