Skip to content

Commit 3082612

Browse files
committed
astyle formatting
1 parent 0cc0038 commit 3082612

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cli/filelister.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ bool FileLister::isDirectory(const std::string &path)
235235
struct stat file_stat;
236236
if (stat(path.c_str(), &file_stat) != -1)
237237
return ((file_stat.st_mode & S_IFMT) == S_IFDIR);
238-
238+
239239
return false;
240240
}
241241

@@ -244,7 +244,7 @@ bool FileLister::fileExists(const std::string &path)
244244
struct stat file_stat;
245245
if (stat(path.c_str(), &file_stat) != -1)
246246
return ((file_stat.st_mode & S_IFMT) == S_IFREG);
247-
247+
248248
return false;
249249
}
250250

0 commit comments

Comments
 (0)