diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2016-10-18 02:05:12 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-10-18 02:05:12 +0200 |
commit | 2b17b24ae5eccd6c472c06abde93b5b83950c658 (patch) | |
tree | 021638587b8614ddaf65a41b38129cbb4034f7e4 /applypatch/utils.h | |
parent | Merge "init: move healthd to late-init" (diff) | |
parent | Change StringValue to use std::string (diff) | |
download | android_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.h')
-rw-r--r-- | applypatch/utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applypatch/utils.h b/applypatch/utils.h index 1c34edd97..c7c8e90e2 100644 --- a/applypatch/utils.h +++ b/applypatch/utils.h @@ -24,8 +24,8 @@ void Write4(int value, FILE* f); void Write8(int64_t value, FILE* f); -int Read2(void* p); -int Read4(void* p); -int64_t Read8(void* p); +int Read2(const void* p); +int Read4(const void* p); +int64_t Read8(const void* p); #endif // _BUILD_TOOLS_APPLYPATCH_UTILS_H |