diff options
author | Tom Cherry <tomcherry@google.com> | 2019-01-31 00:59:53 +0100 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2019-01-31 18:00:40 +0100 |
commit | 72a114a3e16c3dadfb10792b0b9d61d0fb421038 (patch) | |
tree | 6d6f3af85cfb41d60b688de9e0a9049b37b6f139 /roots.h | |
parent | Merge "Fix potential size overflow in blockimg.cpp" (diff) | |
download | android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.gz android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.bz2 android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.lz android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.xz android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.zst android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.zip |
Diffstat (limited to 'roots.h')
-rw-r--r-- | roots.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -19,7 +19,9 @@ #include <string> -typedef struct FstabEntry Volume; +#include <fstab/fstab.h> + +using Volume = android::fs_mgr::FstabEntry; // Load and parse volume data from /etc/recovery.fstab. void load_volume_table(); |