From b07b293944c2002a39bbd804f0b6f590ed8458cd Mon Sep 17 00:00:00 2001 From: Doug Zongker Date: Tue, 28 Feb 2012 12:07:30 -0800 Subject: fix build Change-Id: I44a75f5451af053778be299b23274ecce9b2db76 --- applypatch/applypatch.c | 2 +- applypatch/applypatch.h | 2 +- minelf/Retouch.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/applypatch/applypatch.c b/applypatch/applypatch.c index 09ca2ad90..00004e9a8 100644 --- a/applypatch/applypatch.c +++ b/applypatch/applypatch.c @@ -472,7 +472,7 @@ int ParseSha1(const char* str, uint8_t* digest) { // Search an array of sha1 strings for one matching the given sha1. // Return the index of the match on success, or -1 if no match is // found. -int FindMatchingPatch(uint8_t* sha1, char** const patch_sha1_str, +int FindMatchingPatch(uint8_t* sha1, const char** patch_sha1_str, int num_patches) { int i; uint8_t patch_sha1[SHA_DIGEST_SIZE]; diff --git a/applypatch/applypatch.h b/applypatch/applypatch.h index e8ac3cc6d..fb58843ba 100644 --- a/applypatch/applypatch.h +++ b/applypatch/applypatch.h @@ -64,7 +64,7 @@ int LoadFileContents(const char* filename, FileContents* file, int retouch_flag); int SaveFileContents(const char* filename, const FileContents* file); void FreeFileContents(FileContents* file); -int FindMatchingPatch(uint8_t* sha1, char** const patch_sha1_str, +int FindMatchingPatch(uint8_t* sha1, const char** patch_sha1_str, int num_patches); // bsdiff.c diff --git a/minelf/Retouch.c b/minelf/Retouch.c index 33809cd6d..a25380b34 100644 --- a/minelf/Retouch.c +++ b/minelf/Retouch.c @@ -345,7 +345,7 @@ bool retouch_one_library(const char *binary_name, success = false; goto out; } - if (SaveFileContents(CACHE_TEMP_SOURCE, file) < 0) { + if (SaveFileContents(CACHE_TEMP_SOURCE, &file) < 0) { printf("Failed to back up source file.\n"); success = false; goto out; @@ -357,7 +357,7 @@ bool retouch_one_library(const char *binary_name, printf("(now %ld bytes free for target)\n", (long)free_space); } - result = SaveFileContents(binary_name_atomic, file); + result = SaveFileContents(binary_name_atomic, &file); if (result != 0) { // Maybe the filesystem was optimistic: retry. enough_space = false; -- cgit v1.2.3