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* path;
size_t dirLength;
int pathLength, nbFiles = 0;
size_t dirLength, pathLength;
int nbFiles = 0;
WIN32_FIND_DATAA cFile;
HANDLE hFile;