mirror of
https://github.com/facebook/zstd.git
synced 2025-10-06 00:04:13 -04:00
Fix largeNbDicts bench for clangbuild
Remove unsigned to size_t promotion to fix implicit down conversion errors in clangbuild target.
This commit is contained in:
parent
a2aedf458d
commit
b053bec2f4
@ -766,8 +766,8 @@ int main (int argc, const char** argv)
|
||||
const char* dictionary = NULL;
|
||||
int cLevel = CLEVEL_DEFAULT;
|
||||
size_t blockSize = BLOCKSIZE_DEFAULT;
|
||||
size_t nbDicts = 0; /* determine nbDicts automatically: 1 dictionary per block */
|
||||
size_t nbBlocks = 0; /* determine nbBlocks automatically, from source and blockSize */
|
||||
unsigned nbDicts = 0; /* determine nbDicts automatically: 1 dictionary per block */
|
||||
unsigned nbBlocks = 0; /* determine nbBlocks automatically, from source and blockSize */
|
||||
|
||||
for (int argNb = 1; argNb < argc ; argNb++) {
|
||||
const char* argument = argv[argNb];
|
||||
|
Loading…
x
Reference in New Issue
Block a user