diff --git a/src/common/fs_file.cpp b/src/common/fs_file.cpp index 980ce126..fb51309c 100644 --- a/src/common/fs_file.cpp +++ b/src/common/fs_file.cpp @@ -60,11 +60,10 @@ u64 File::tell() const { std::vector File::getDirectoryEntries(const std::string& path) { std::string curpath = path; - if (!curpath.ends_with("/")) - { + if (!curpath.ends_with("/")) { curpath = std::string(curpath + "/"); } - std::vector < DirEntry> files; + std::vector files; for (const auto& entry : std::filesystem::directory_iterator(curpath)) { if (std::filesystem::is_regular_file( entry.path().string())) {