Commit b303d8bc authored by gabime's avatar gabime

Update tests utils

parent 68118f42
...@@ -87,7 +87,7 @@ std::size_t count_files(const std::string &folder) ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment