Fixed clang warning
This commit is contained in:
parent
a9ed6b352b
commit
545e7d2de8
@ -108,7 +108,7 @@ std::size_t count_files(const std::string &folder)
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct dirent *ep;
|
struct dirent *ep;
|
||||||
while (ep = readdir(dp))
|
while ((ep = readdir(dp)) != nullptr)
|
||||||
{
|
{
|
||||||
if (ep->d_name[0] != '.')
|
if (ep->d_name[0] != '.')
|
||||||
counter++;
|
counter++;
|
||||||
|
Loading…
Reference in New Issue
Block a user