diff options
author | Doug Zongker <dougz@android.com> | 2009-06-12 02:21:44 +0200 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2009-06-12 18:40:37 +0200 |
commit | 8edb00c990e563e6f91b278a212f2edf877cf763 (patch) | |
tree | dcd6c0fb2ce82fcb5b43ed47dc74879cfe71b647 /install.c | |
parent | fix sim build in donut, too (diff) | |
download | android_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 '')
-rw-r--r-- | install.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |