From f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 11 May 2020 12:20:48 +0300 Subject: Remove useless struct keyword --- src/fs/files.cpp | 4 ++-- src/fs/paths.cpp | 2 +- src/fs/virtfs/fsdir.cpp | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/fs') diff --git a/src/fs/files.cpp b/src/fs/files.cpp index 1ff57ad9f..fcce1c0ea 100644 --- a/src/fs/files.cpp +++ b/src/fs/files.cpp @@ -271,7 +271,7 @@ void Files::saveTextFile(const std::string &path, void Files::deleteFilesInDirectory(std::string path) { path = pathJoin(path, dirSeparator); - const struct dirent *next_file = nullptr; + const dirent *next_file = nullptr; DIR *const dir = opendir(path.c_str()); if (dir != nullptr) @@ -296,7 +296,7 @@ void Files::enumFiles(StringVect &files, if (dir != nullptr) { - const struct dirent *next_file = nullptr; + const dirent *next_file = nullptr; while ((next_file = readdir(dir)) != nullptr) { const std::string file = next_file->d_name; diff --git a/src/fs/paths.cpp b/src/fs/paths.cpp index a639dacba..273dbd59f 100644 --- a/src/fs/paths.cpp +++ b/src/fs/paths.cpp @@ -264,7 +264,7 @@ std::string getHomePath() if (path == nullptr) { const uid_t uid = getuid(); - const struct passwd *const pw = getpwuid(uid); + const passwd *const pw = getpwuid(uid); if (pw != nullptr && pw->pw_dir != nullptr) { diff --git a/src/fs/virtfs/fsdir.cpp b/src/fs/virtfs/fsdir.cpp index dcac978c7..285104146 100644 --- a/src/fs/virtfs/fsdir.cpp +++ b/src/fs/virtfs/fsdir.cpp @@ -194,7 +194,7 @@ namespace FsDir { const std::string path = static_cast(entry)->rootSubDir + dirName; - const struct dirent *next_file = nullptr; + const dirent *next_file = nullptr; DIR *const dir = opendir(path.c_str()); if (dir != nullptr) { @@ -538,7 +538,7 @@ namespace FsDir { const std::string path = static_cast(entry)->rootSubDir + dirName; - const struct dirent *next_file = nullptr; + const dirent *next_file = nullptr; DIR *const dir = opendir(path.c_str()); if (dir != nullptr) { @@ -588,7 +588,7 @@ namespace FsDir { const std::string path = static_cast(entry)->rootSubDir + dirName; - const struct dirent *next_file = nullptr; + const dirent *next_file = nullptr; DIR *const dir = opendir(path.c_str()); if (dir != nullptr) { @@ -638,7 +638,7 @@ namespace FsDir { const std::string path = static_cast(entry)->rootSubDir + dirName; - const struct dirent *next_file = nullptr; + const dirent *next_file = nullptr; DIR *const dir = opendir(path.c_str()); if (dir != nullptr) { -- cgit v1.2.3-60-g2f50