summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorMohamad Ayyash <mkayyash@google.com>2015-04-01 18:04:50 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-01 18:04:50 +0000
commit94cd52391c2332030046ea9531c9a826ba6f68e6 (patch)
tree79acc3853d57715fd134dd47bc085abc0b5aaf64 /fastboot
parent3f80c4d974889167e56445e5dfa25f765c2522b8 (diff)
parenta15881a9e9d2951eda7a7a85fbaadd93bfb9da9b (diff)
downloadsystem_core-94cd52391c2332030046ea9531c9a826ba6f68e6.zip
system_core-94cd52391c2332030046ea9531c9a826ba6f68e6.tar.gz
system_core-94cd52391c2332030046ea9531c9a826ba6f68e6.tar.bz2
am a15881a9: am ed926596: am 6900d34e: Merge "Add verbose param to sparse_file_import_auto"
* commit 'a15881a9e9d2951eda7a7a85fbaadd93bfb9da9b': Add verbose param to sparse_file_import_auto
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/fastboot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
index a25d316..e35cc70 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -528,7 +528,7 @@ void queue_info_dump(void)
static struct sparse_file **load_sparse_files(int fd, int max_size)
{
- struct sparse_file* s = sparse_file_import_auto(fd, false);
+ struct sparse_file* s = sparse_file_import_auto(fd, false, true);
if (!s) {
die("cannot sparse read file\n");
}