aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorVincent_Michael <Vincent_Michael@gmx.de>2013-01-09 21:14:12 +0100
committerVincent_Michael <Vincent_Michael@gmx.de>2013-01-09 21:14:12 +0100
commit7210ffe34d2052c1aee642ac3af40425c8ba137e (patch)
treed4a5c4fe9630d4c73f5d9bb973147bbe633213fb /src/tools
parentcbf9324f61984727163150ed09a72288da45e3a4 (diff)
Core: Fix warnings
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/mmaps_generator/PathCommon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/mmaps_generator/PathCommon.h b/src/tools/mmaps_generator/PathCommon.h
index 8fad880212b..820ff34d425 100644
--- a/src/tools/mmaps_generator/PathCommon.h
+++ b/src/tools/mmaps_generator/PathCommon.h
@@ -90,7 +90,7 @@ namespace MMAP
return LISTFILE_DIRECTORY_NOT_FOUND;
do
{
- if (findFileInfo.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY == 0)
+ if ((findFileInfo.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
fileList.push_back(string(findFileInfo.cFileName));
}
while (FindNextFile(hFind, &findFileInfo));