commit | badc19350784b91b2a92875eeeb3e4bbe0098002 | [log] [tgz] |
---|---|---|
author | Daniel Zheng <zhengdaniel@google.com> | Wed Aug 28 22:09:32 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Aug 28 22:09:32 2024 +0000 |
tree | e58773f96363ded195eb87fd2144e64f91ce09f1 | |
parent | f1e645ee5cdac57311675a5b917623af3899a580 [diff] | |
parent | 6db5f79c6783d57e375091f9f38acd10197f714b [diff] |
update_engine: uint64_t GetPartitionSize() am: 6db5f79c67 Original change: https://android-review.googlesource.com/c/platform/system/update_engine/+/3248295 Change-Id: I2dc706ddc09df7e7f432b1bdc8f3f49ef71081c7 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/payload_consumer/filesystem_verifier_action.cc b/payload_consumer/filesystem_verifier_action.cc index 2934fb7..45faebb7 100644 --- a/payload_consumer/filesystem_verifier_action.cc +++ b/payload_consumer/filesystem_verifier_action.cc
@@ -456,7 +456,7 @@ } } -size_t FilesystemVerifierAction::GetPartitionSize() const { +uint64_t FilesystemVerifierAction::GetPartitionSize() const { const InstallPlan::Partition& partition = install_plan_.partitions[partition_index_]; switch (verifier_step_) {
diff --git a/payload_consumer/filesystem_verifier_action.h b/payload_consumer/filesystem_verifier_action.h index 5bc44b1..79ef64f 100644 --- a/payload_consumer/filesystem_verifier_action.h +++ b/payload_consumer/filesystem_verifier_action.h
@@ -109,7 +109,7 @@ bool IsVABC(const InstallPlan::Partition& partition) const; - size_t GetPartitionSize() const; + uint64_t GetPartitionSize() const; // When the read is done, finalize the hash checking of the current partition // and continue checking the next one.