From 2bdffa6131fd8c7b046a2ae4c64ccd33c9f04e50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 26 Mar 2015 18:18:32 +0000 Subject: [PATCH] BPathFinder::FindPaths() fixed passing flags. * One variant of FindPaths() replaced the flags with '0'. --- src/kits/storage/PathFinder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/storage/PathFinder.cpp b/src/kits/storage/PathFinder.cpp index 0666d39bf4..fe3b1c5567 100644 --- a/src/kits/storage/PathFinder.cpp +++ b/src/kits/storage/PathFinder.cpp @@ -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); }