summaryrefslogtreecommitdiff
path: root/cmds/installd/CacheItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/installd/CacheItem.cpp')
-rw-r--r--cmds/installd/CacheItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/CacheItem.cpp b/cmds/installd/CacheItem.cpp
index 515f915b8b..e29ff4c248 100644
--- a/cmds/installd/CacheItem.cpp
+++ b/cmds/installd/CacheItem.cpp
@@ -73,7 +73,7 @@ int CacheItem::purge() {
FTS *fts;
FTSENT *p;
char *argv[] = { (char*) path.c_str(), nullptr };
- if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
+ if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, nullptr))) {
PLOG(WARNING) << "Failed to fts_open " << path;
return -1;
}