Merge "liblp: Fix typo in IsRetrofitDynamicPartitionsDevice."

This commit is contained in:
David Anderson 2019-07-29 23:01:18 +00:00 committed by Gerrit Code Review
commit 687f1c4e8e
1 changed files with 1 additions and 1 deletions

View File

@ -1060,7 +1060,7 @@ bool MetadataBuilder::IsRetrofitDynamicPartitionsDevice() {
if (sRetrofitDap.has_value()) {
return *sRetrofitDap;
}
return !android::base::GetBoolProperty("ro.boot.dynamic_partitions_retrofit", false);
return android::base::GetBoolProperty("ro.boot.dynamic_partitions_retrofit", false);
}
bool MetadataBuilder::IsRetrofitMetadata() const {