From 0873493377f03ca23ef4b3e63a30cfa852828d6f Mon Sep 17 00:00:00 2001 From: SoftCoder Date: Mon, 30 Jan 2017 11:51:08 -0800 Subject: [PATCH] - cleanup warnings on mac --- source/shared_lib/sources/platform/common/platform_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/sources/platform/common/platform_common.cpp b/source/shared_lib/sources/platform/common/platform_common.cpp index 3033b425d..20b832d5d 100644 --- a/source/shared_lib/sources/platform/common/platform_common.cpp +++ b/source/shared_lib/sources/platform/common/platform_common.cpp @@ -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