diff options
author | David Anderson <dvander@google.com> | 2019-06-21 17:45:23 -0700 |
---|---|---|
committer | David Anderson <dvander@google.com> | 2019-07-13 18:02:03 +0000 |
commit | 4c891c94214702d57f81b5892bcccf3e38bf09a1 (patch) | |
tree | 2897fcdd2f099bb2e7ef3b3c4b18a863c47a5599 /dynamic_partition_control_android.h | |
parent | 500ca135b771d41700c91ae716bf9c9179d29bef (diff) |
Fix build for API change to DestroyLogicalPartition().
This method no longer uses a timeout parameter.
Bug: 135771280
Test: update_engine and update_engine_unittests build
Change-Id: If4764bf2d60c6b3aac1e8052c7fbb013c7b3349d
Diffstat (limited to 'dynamic_partition_control_android.h')
-rw-r--r-- | dynamic_partition_control_android.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dynamic_partition_control_android.h b/dynamic_partition_control_android.h index 1233b642..334f9bd7 100644 --- a/dynamic_partition_control_android.h +++ b/dynamic_partition_control_android.h @@ -36,8 +36,8 @@ class DynamicPartitionControlAndroid : public DynamicPartitionControlInterface { uint32_t slot, bool force_writable, std::string* path) override; - bool UnmapPartitionOnDeviceMapper(const std::string& target_partition_name, - bool wait) override; + bool UnmapPartitionOnDeviceMapper( + const std::string& target_partition_name) override; void Cleanup() override; bool DeviceExists(const std::string& path) override; android::dm::DmDeviceState GetState(const std::string& name) override; |