- cleanup warnings on mac

This commit is contained in:
SoftCoder 2017-01-30 11:51:08 -08:00
parent c86d87c19f
commit 0873493377
1 changed files with 1 additions and 1 deletions

View File

@ -1145,7 +1145,7 @@ uint32 getFolderTreeContentsCheckSumRecursively(const string &path, const string
#if defined(__APPLE__) || defined(__FreeBSD__)
struct stat statStruct;
// only process if dir..
int actStat = lstat( globbuf.gl_pathv[i], &statStruct);
lstat( globbuf.gl_pathv[i], &statStruct);
if( S_ISDIR(statStruct.st_mode) == 0)
continue;
#endif