summaryrefslogtreecommitdiffstats
path: root/rangeset.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-08-18 02:50:56 +0200
committerTianjie Xu <xunchang@google.com>2017-08-19 02:56:22 +0200
commit57dd96199570beb29ea8b0f3934c594cd42e3043 (patch)
treeffb9874e6c0ab11411bba2f023e5cf1de0faa69d /rangeset.h
parentMerge "update_verifier now logs to kmesg" (diff)
downloadandroid_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.tar
android_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.tar.gz
android_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.tar.bz2
android_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.tar.lz
android_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.tar.xz
android_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.tar.zst
android_bootable_recovery-57dd96199570beb29ea8b0f3934c594cd42e3043.zip
Diffstat (limited to '')
-rw-r--r--rangeset.h (renamed from updater/include/updater/rangeset.h)8
1 files changed, 4 insertions, 4 deletions
diff --git a/updater/include/updater/rangeset.h b/rangeset.h
index b67c98724..f224a08be 100644
--- a/updater/include/updater/rangeset.h
+++ b/rangeset.h
@@ -266,13 +266,13 @@ class SortedRangeSet : public RangeSet {
new_block_start += (old_block_start - range.first);
return (new_block_start * kBlockSize + old_offset % kBlockSize);
} else {
- CHECK(false) <<"block_start " << old_block_start << " is missing between two ranges: "
- << this->ToString();
+ CHECK(false) << "block_start " << old_block_start
+ << " is missing between two ranges: " << this->ToString();
return 0;
}
}
- CHECK(false) <<"block_start " << old_block_start << " exceeds the limit of current RangeSet: "
- << this->ToString();
+ CHECK(false) << "block_start " << old_block_start
+ << " exceeds the limit of current RangeSet: " << this->ToString();
return 0;
}
}; \ No newline at end of file