summaryrefslogtreecommitdiff
path: root/src/fileio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileio.cpp')
-rw-r--r--src/fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index a4ba69cc2..f7b4a5af2 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -984,12 +984,12 @@ static uint ScanPath(FileScanner *fs, const char *extension, const char *path, s
snprintf(filename, lengthof(filename), "%s%s", path, d_name);
- if (sb.st_mode & S_IFDIR) {
+ if (S_ISDIR(sb.st_mode)) {
/* Directory */
if (strcmp(d_name, ".") == 0 || strcmp(d_name, "..") == 0) continue;
AppendPathSeparator(filename, lengthof(filename));
num += ScanPath(fs, extension, filename, basepath_length);
- } else if (sb.st_mode & S_IFREG) {
+ } else if (S_ISREG(sb.st_mode)) {
/* File */
char *ext = strrchr(filename, '.');