summaryrefslogtreecommitdiff
path: root/src/fs/virtfs/fsdir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/virtfs/fsdir.cpp')
-rw-r--r--src/fs/virtfs/fsdir.cpp8
1 files changed, 4 insertions, 4 deletions
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<DirEntry*>(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<DirEntry*>(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<DirEntry*>(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<DirEntry*>(entry)->rootSubDir +
dirName;
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
DIR *const dir = opendir(path.c_str());
if (dir != nullptr)
{