diff --git a/src/utils/system.cc b/src/utils/system.cc index f48afb7d6b..830b342438 100644 --- a/src/utils/system.cc +++ b/src/utils/system.cc @@ -210,7 +210,7 @@ bool isFile(const std::string& f) { return false; } fstat(fileno(fp), &fileInfo); - if (!S_ISREG(fileInfo.st_mode)) { + if (!S_ISREG(fileInfo.st_mode)) { // cppcheck-suppress syntaxError ; false positive fclose(fp); return false; }