Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 856421c3 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "installd: fix build-error"

parents 35c955ff d520e80f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2178,7 +2178,7 @@ binder::Status InstalldNativeService::getAppCrates(
#if CRATE_DEBUG
    LOG(WARNING) << "retVector.size() =" << retVector.size();
    for (auto& item : retVector) {
        CrateManager::dump(item);
        CrateManager::dump(*item);
    }
#endif

@@ -2210,7 +2210,7 @@ binder::Status InstalldNativeService::getUserCrates(
        if (cratedFolder == nullptr) {
            return;
        }
        retVector->push_back(std::move(crateMetadata));
        retVector.push_back(std::move(crateMetadata));
    };

    std::function<void(FTSENT*)> onHandingPackage = [&](FTSENT* packageDir) -> void {
@@ -2222,7 +2222,7 @@ binder::Status InstalldNativeService::getUserCrates(
#if CRATE_DEBUG
    LOG(DEBUG) << "retVector.size() =" << retVector.size();
    for (auto& item : retVector) {
        CrateManager::dump(item);
        CrateManager::dump(*item);
    }
#endif