aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/archive.cpp b/common/archive.cpp
index 96ecb52315..7e17fdca32 100644
--- a/common/archive.cpp
+++ b/common/archive.cpp
@@ -175,7 +175,7 @@ int FSDirectory::matchPattern(StringList &list, const String &pattern) {
// Add all filenames from our cache
NodeCache::iterator it = _fileCache.begin();
for ( ; it != _fileCache.end(); it++) {
- if (it->_key.matchString(pattern));
+ if (it->_key.matchString(pattern))
list.push_back(it->_key);
}