Update tests utils

This commit is contained in:
gabime 2019-09-16 11:56:56 +03:00
parent 68118f4233
commit b303d8bc40
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ std::size_t count_files(const std::string &folder)
{ {
if (ffd.cFileName[0] != '.') if (ffd.cFileName[0] != '.')
counter++; counter++;
} while (::FindNextFile(hFind, &ffd) == TRUE); } while (::FindNextFile(hFind, &ffd) != 0);
::FindClose(hFind); ::FindClose(hFind);
} }
else else