summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-10-02 22:48:50 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-10-02 22:48:50 +0200
commitdd7a4b5264c6e332dd6b02071e966f53a4e20050 (patch)
treeb4a0df58e109a141b859ff90a720d3deb2fc977b /recovery.cpp
parentMerge "Use -Werror in bootable/recovery" (diff)
parentroots: Fix an issue with volume_for_path(). (diff)
downloadandroid_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar
android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.gz
android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.bz2
android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.lz
android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.xz
android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.zst
android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 076b4492e..4dc5b540e 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1396,7 +1396,7 @@ int main(int argc, char **argv) {
printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
load_volume_table();
- has_cache = volume_for_path(CACHE_ROOT) != nullptr;
+ has_cache = volume_for_mount_point(CACHE_ROOT) != nullptr;
std::vector<std::string> args = get_args(argc, argv);
std::vector<char*> args_to_parse(args.size());