BPathFinder::FindPaths() fixed passing flags.

* One variant of FindPaths() replaced the flags with '0'.
This commit is contained in:
Axel Dörfler
2015-03-26 21:47:19 +00:00
parent d3f28e597b
commit 2bdffa6131
+1 -1
View File
@@ -145,7 +145,7 @@ BPathFinder::FindPaths(const char* architecture,
BPathFinder::FindPaths(path_base_directory baseDirectory, const char* subPath,
uint32 flags, BStringList& _paths)
{
return FindPaths(NULL, baseDirectory, subPath, 0, _paths);
return FindPaths(NULL, baseDirectory, subPath, flags, _paths);
}