summaryrefslogtreecommitdiffstats
path: root/install.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-06-15 05:49:32 +0200
committerThe Android Open Source Project <initial-contribution@android.com>2009-06-15 05:49:32 +0200
commitcf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3 (patch)
tree5147d4b4add3e2dc17f5404254e8ef3be80fd23c /install.c
parentam 9dbc027b: fix sim build in donut, too (diff)
parentedify extensions for OTA package installation, part 2 (diff)
downloadandroid_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.gz
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.bz2
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.lz
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.xz
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.zst
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.zip
Diffstat (limited to 'install.c')
-rw-r--r--install.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.c b/install.c
index 0b5c04da9..cca940021 100644
--- a/install.c
+++ b/install.c
@@ -124,7 +124,8 @@ handle_firmware_update(char* type, char* filename) {
return INSTALL_ERROR;
}
- LOGI("type is [%s]\n", type);
+ LOGI("type is %s; size is %d; file is %s\n",
+ type, (int)st_data.st_size, filename);
char* data = malloc(st_data.st_size);
if (data == NULL) {