summaryrefslogtreecommitdiffstats
path: root/applypatch/utils.cpp
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2016-10-18 02:05:12 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-10-18 02:05:12 +0200
commit2b17b24ae5eccd6c472c06abde93b5b83950c658 (patch)
tree021638587b8614ddaf65a41b38129cbb4034f7e4 /applypatch/utils.cpp
parentMerge "init: move healthd to late-init" (diff)
parentChange StringValue to use std::string (diff)
downloadandroid_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.tar
android_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.tar.gz
android_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.tar.bz2
android_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.tar.lz
android_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.tar.xz
android_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.tar.zst
android_bootable_recovery-2b17b24ae5eccd6c472c06abde93b5b83950c658.zip
Diffstat (limited to 'applypatch/utils.cpp')
-rw-r--r--applypatch/utils.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/applypatch/utils.cpp b/applypatch/utils.cpp
index fef250f01..450dc8d76 100644
--- a/applypatch/utils.cpp
+++ b/applypatch/utils.cpp
@@ -38,22 +38,22 @@ void Write8(int64_t value, FILE* f) {
fputc((value >> 56) & 0xff, f);
}
-int Read2(void* pv) {
- unsigned char* p = reinterpret_cast<unsigned char*>(pv);
+int Read2(const void* pv) {
+ const unsigned char* p = reinterpret_cast<const unsigned char*>(pv);
return (int)(((unsigned int)p[1] << 8) |
(unsigned int)p[0]);
}
-int Read4(void* pv) {
- unsigned char* p = reinterpret_cast<unsigned char*>(pv);
+int Read4(const void* pv) {
+ const unsigned char* p = reinterpret_cast<const unsigned char*>(pv);
return (int)(((unsigned int)p[3] << 24) |
((unsigned int)p[2] << 16) |
((unsigned int)p[1] << 8) |
(unsigned int)p[0]);
}
-int64_t Read8(void* pv) {
- unsigned char* p = reinterpret_cast<unsigned char*>(pv);
+int64_t Read8(const void* pv) {
+ const unsigned char* p = reinterpret_cast<const unsigned char*>(pv);
return (int64_t)(((uint64_t)p[7] << 56) |
((uint64_t)p[6] << 48) |
((uint64_t)p[5] << 40) |