diff options
author | Nick Desaulniers <ndesaulniers@google.com> | 2019-10-11 18:29:11 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-10-11 18:29:11 +0200 |
commit | bd99b40ae908bf2ec0170a7db7500ab0dc28121d (patch) | |
tree | 6312e0d954fc5e01ce63df84ac6f42486be83e65 | |
parent | Merge "Add IBootControl 1.1 support to libboot_control." am: 47bb0c8b59 (diff) | |
parent | Merge "[bootable][recovery] fix -Wreorder-init-list" (diff) | |
download | android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.tar android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.tar.gz android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.tar.bz2 android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.tar.lz android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.tar.xz android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.tar.zst android_bootable_recovery-bd99b40ae908bf2ec0170a7db7500ab0dc28121d.zip |
-rw-r--r-- | recovery_utils/roots.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recovery_utils/roots.cpp b/recovery_utils/roots.cpp index f717ec208..fe3a07aa2 100644 --- a/recovery_utils/roots.cpp +++ b/recovery_utils/roots.cpp @@ -54,7 +54,11 @@ void load_volume_table() { } fstab.emplace_back(FstabEntry{ - .mount_point = "/tmp", .fs_type = "ramdisk", .blk_device = "ramdisk", .length = 0 }); + .blk_device = "ramdisk", + .mount_point = "/tmp", + .fs_type = "ramdisk", + .length = 0, + }); std::cout << "recovery filesystem table" << std::endl << "=========================" << std::endl; for (size_t i = 0; i < fstab.size(); ++i) { |