fix minor conversion warning on 32-bit

This commit is contained in:
Yann Collet 2019-10-25 18:26:30 -07:00
parent b40eaced94
commit 74d872e987

View File

@ -385,8 +385,8 @@ int UTIL_prepareFileList(const char* dirName,
char** bufEnd, int followLinks) char** bufEnd, int followLinks)
{ {
char* path; char* path;
size_t dirLength; size_t dirLength, pathLength;
int pathLength, nbFiles = 0; int nbFiles = 0;
WIN32_FIND_DATAA cFile; WIN32_FIND_DATAA cFile;
HANDLE hFile; HANDLE hFile;