From a9ed6b352b1ecfe0650a34bba265e56b0391ba78 Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 16 Sep 2019 11:58:51 +0300 Subject: [PATCH] Update utils.cpp --- tests/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.cpp b/tests/utils.cpp index 6ff210d6..179116cf 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -78,7 +78,7 @@ std::size_t count_files(const std::string &folder) size_t counter = 0; WIN32_FIND_DATA ffd; - // Start iterating over the files in the path directory. + // Start iterating over the files in the folder directory. HANDLE hFind = ::FindFirstFileA((folder + "\\*").c_str(), &ffd); if (hFind != INVALID_HANDLE_VALUE) {