diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2018-12-01 07:00:32 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-12-01 07:00:32 +0100 |
commit | a37aa092c707be0db103dd984afbae41ac3a6766 (patch) | |
tree | 30ea5d3400286883fed83ae8bdfa0b053b94815e | |
parent | Merge "ImageGenerator: ignore the duplicate locales" (diff) | |
parent | Fix ensure_path_mounted_at for fsck_unshare_blocks (diff) | |
download | android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.tar android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.tar.gz android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.tar.bz2 android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.tar.lz android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.tar.xz android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.tar.zst android_bootable_recovery-a37aa092c707be0db103dd984afbae41ac3a6766.zip |
-rw-r--r-- | fsck_unshare_blocks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsck_unshare_blocks.cpp b/fsck_unshare_blocks.cpp index b653d13ce..acc453cd7 100644 --- a/fsck_unshare_blocks.cpp +++ b/fsck_unshare_blocks.cpp @@ -121,7 +121,7 @@ bool do_fsck_unshare_blocks() { // Temporarily mount system so we can copy e2fsck_static. std::string system_root = get_system_root(); - bool mounted = ensure_path_mounted_at(system_root.c_str(), "/mnt/system"); + bool mounted = ensure_path_mounted_at(system_root.c_str(), "/mnt/system") != -1; partitions.push_back(system_root); if (!mounted) { |