diff options
author | Tao Bao <tbao@google.com> | 2017-10-02 23:10:20 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-10-02 23:10:20 +0200 |
commit | 24801a34389e3f6f1567e1f6985fbc6b3fbf6baa (patch) | |
tree | b20f6c02ba836a898aeecc537a4abab5d3db6994 /recovery.cpp | |
parent | Merge "Use -Werror in bootable/recovery" am: 88aa128e22 (diff) | |
parent | Merge "roots: Fix an issue with volume_for_path()." (diff) | |
download | android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.tar android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.tar.gz android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.tar.bz2 android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.tar.lz android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.tar.xz android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.tar.zst android_bootable_recovery-24801a34389e3f6f1567e1f6985fbc6b3fbf6baa.zip |
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 2 |
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()); |