summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorMohamad Ayyash <mkayyash@google.com>2015-03-31 12:09:29 -0700
committerMohamad Ayyash <mkayyash@google.com>2015-03-31 12:09:37 -0700
commit80cc1f6864288f166b786a61ad57f12081114225 (patch)
treeb1c21a62d3a0aa23c69d77318ffe24ffbad2ec5a /fastboot
parentb6f38def22add4b5d6878185d238f91659239161 (diff)
downloadsystem_core-80cc1f6864288f166b786a61ad57f12081114225.zip
system_core-80cc1f6864288f166b786a61ad57f12081114225.tar.gz
system_core-80cc1f6864288f166b786a61ad57f12081114225.tar.bz2
Add verbose param to sparse_file_import_auto
Change-Id: I0c5607f7aa5e964abc2031bbe71ff5c6e6ef56cc Signed-off-by: Mohamad Ayyash <mkayyash@google.com>
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 6dc7d34..e139bcd 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -538,7 +538,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");
}