static size_t dfnbCapacity = 0;
static char* dstFileNameBuffer = NULL; /* using static allocation : this function cannot be multi-threaded */
- const char* suffixlist = ZSTD_EXTENSION
+ const char* SUFFIX_LIST = ZSTD_EXTENSION
#ifdef ZSTD_GZDECOMPRESS
"/" GZ_EXTENSION
#endif
const char* const suffixPtr = strrchr(srcFileName, '.');
if (suffixPtr == NULL) {
DISPLAYLEVEL(1, "zstd: %s: missing suffix (%s expected) -- ignored \n",
- srcFileName, suffixlist);
+ srcFileName, SUFFIX_LIST);
return NULL;
}
suffixSize = strlen(suffixPtr);
#endif
) ) {
DISPLAYLEVEL(1, "zstd: %s: unknown suffix (%s expected) -- ignored \n",
- srcFileName, suffixlist);
+ srcFileName, SUFFIX_LIST);
return NULL;
}