mirror of
https://github.com/facebook/zstd.git
synced 2025-10-04 00:02:33 -04:00
yet another minor visual conversion warning
this time for 32-bit systems
This commit is contained in:
parent
3e5c81ea36
commit
12efa1ed89
@ -275,7 +275,7 @@ UTIL_createFileNamesTable_fromFileName(const char* inputFileName)
|
||||
{ U64 const inputFileSize = UTIL_getFileSize(inputFileName);
|
||||
if(inputFileSize > MAX_FILE_OF_FILE_NAMES_SIZE)
|
||||
return NULL;
|
||||
bufSize = inputFileSize + 1; /* (+1) to add '\0' at the end of last filename */
|
||||
bufSize = (size_t)(inputFileSize + 1); /* (+1) to add '\0' at the end of last filename */
|
||||
}
|
||||
|
||||
buf = (char*) malloc(bufSize);
|
||||
|
Loading…
x
Reference in New Issue
Block a user