summaryrefslogtreecommitdiffstats
path: root/updater/install.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2014-08-20 00:53:10 +0200
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-19 04:43:23 +0200
commitc0fd40159cf329c54c96038d954c0b8c50a77970 (patch)
treea435cfd2bd1b457bb2e45304b8e75cd2e1305831 /updater/install.c
parentam 2efc9d99: clear BCB in misc partition before rebooting (diff)
parentinstaller for new block OTA system (diff)
downloadandroid_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.tar
android_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.tar.gz
android_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.tar.bz2
android_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.tar.lz
android_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.tar.xz
android_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.tar.zst
android_bootable_recovery-c0fd40159cf329c54c96038d954c0b8c50a77970.zip
Diffstat (limited to 'updater/install.c')
-rw-r--r--updater/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/install.c b/updater/install.c
index 198618001..cdcdb8fdb 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -54,7 +54,7 @@
#endif
// Take a sha-1 digest and return it as a newly-allocated hex string.
-static char* PrintSha1(const uint8_t* digest) {
+char* PrintSha1(const uint8_t* digest) {
char* buffer = malloc(SHA_DIGEST_SIZE*2 + 1);
int i;
const char* alphabet = "0123456789abcdef";