mirror of
https://github.com/facebook/zstd.git
synced 2025-12-24 17:21:03 +03:00
changed macro name to ZSTDCLI_CLEVEL_DEFAULT
This commit is contained in:
@@ -31,8 +31,8 @@
|
||||
/*-************************************
|
||||
* Tuning parameters
|
||||
**************************************/
|
||||
#ifndef ZSTDCLI_DEFAULT_CLEVEL
|
||||
# define ZSTDCLI_DEFAULT_CLEVEL 3
|
||||
#ifndef ZSTDCLI_CLEVEL_DEFAULT
|
||||
# define ZSTDCLI_CLEVEL_DEFAULT 3
|
||||
#endif
|
||||
|
||||
|
||||
@@ -215,7 +215,7 @@ int main(int argCount, const char** argv)
|
||||
nextArgumentIsMaxDict=0,
|
||||
nextArgumentIsDictID=0,
|
||||
nextArgumentIsFile=0;
|
||||
unsigned cLevel = ZSTDCLI_DEFAULT_CLEVEL;
|
||||
unsigned cLevel = ZSTDCLI_CLEVEL_DEFAULT;
|
||||
unsigned cLevelLast = 1;
|
||||
unsigned recursive = 0;
|
||||
const char** filenameTable = (const char**)malloc(argCount * sizeof(const char*)); /* argCount >= 1 */
|
||||
|
||||
Reference in New Issue
Block a user