summaryrefslogtreecommitdiffstats
path: root/install.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-06-12 02:21:44 +0200
committerDoug Zongker <dougz@android.com>2009-06-12 18:40:37 +0200
commit8edb00c990e563e6f91b278a212f2edf877cf763 (patch)
treedcd6c0fb2ce82fcb5b43ed47dc74879cfe71b647 /install.c
parentfix sim build in donut, too (diff)
downloadandroid_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.tar
android_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.tar.gz
android_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.tar.bz2
android_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.tar.lz
android_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.tar.xz
android_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.tar.zst
android_bootable_recovery-8edb00c990e563e6f91b278a212f2edf877cf763.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) {