summaryrefslogtreecommitdiff
path: root/src/fs/files.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2020-05-11 12:20:48 +0300
committerAndrei Karas <akaras@inbox.ru>2020-05-11 12:20:48 +0300
commitf8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea (patch)
tree6029f4050a42609fb5045565ea7668cd84e32a3d /src/fs/files.cpp
parent595155193e6f9202d240f0798a39e33a6779366a (diff)
downloadmv-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.tar.gz
mv-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.tar.bz2
mv-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.tar.xz
mv-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.zip
Remove useless struct keyword
Diffstat (limited to 'src/fs/files.cpp')
-rw-r--r--src/fs/files.cpp4
1 files changed, 2 insertions, 2 deletions
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;