aboutsummaryrefslogtreecommitdiff
path: root/common/fs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/fs.cpp')
-rw-r--r--common/fs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/fs.cpp b/common/fs.cpp
index 3e0959b232..86cdfe41d6 100644
--- a/common/fs.cpp
+++ b/common/fs.cpp
@@ -47,7 +47,7 @@ static bool matchString(const char *str, const char *pat) {
if (p) {
pat = p;
str = ++q;
- if(!*str)
+ if (!*str)
return !*pat;
break;
}
@@ -56,7 +56,7 @@ static bool matchString(const char *str, const char *pat) {
}
// fallthrough
case '?':
- if(!*str)
+ if (!*str)
return !*pat;
pat++;
str++;