diff options
author | Doug Zongker <dougz@android.com> | 2014-02-14 00:18:19 +0100 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2014-02-14 00:18:19 +0100 |
commit | a1bc148c7c81f886426c253f2ea7beb0f301f6b0 (patch) | |
tree | 2ece82d93c5be1f793d8cf1d475dcd5d2cab442a /applypatch/applypatch.h | |
parent | add syspatch support to updater (diff) | |
download | android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.tar android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.tar.gz android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.tar.bz2 android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.tar.lz android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.tar.xz android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.tar.zst android_bootable_recovery-a1bc148c7c81f886426c253f2ea7beb0f301f6b0.zip |
Diffstat (limited to '')
-rw-r--r-- | applypatch/applypatch.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/applypatch/applypatch.h b/applypatch/applypatch.h index f1f13a100..ee54c24ea 100644 --- a/applypatch/applypatch.h +++ b/applypatch/applypatch.h @@ -19,7 +19,6 @@ #include <sys/stat.h> #include "mincrypt/sha.h" -#include "minelf/Retouch.h" #include "edify/expr.h" typedef struct _Patch { @@ -61,8 +60,7 @@ int applypatch_check(const char* filename, int num_patches, char** const patch_sha1_str); -int LoadFileContents(const char* filename, FileContents* file, - int retouch_flag); +int LoadFileContents(const char* filename, FileContents* file); int SaveFileContents(const char* filename, const FileContents* file); void FreeFileContents(FileContents* file); int FindMatchingPatch(uint8_t* sha1, char* const * const patch_sha1_str, |