aboutsummaryrefslogtreecommitdiffstats
path: root/updater/install.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-15 18:05:10 -0700
committerDoug Zongker <dougz@android.com>2010-09-15 18:05:10 -0700
commitdc49ce453efee52044287a2d0139996952f71170 (patch)
treea8d5e6cdcecda5b508a4388dc2713770b20117a4 /updater/install.c
parent6c3e03b3c55e9e8cc11cca9aca71d0a65c8e3d62 (diff)
downloadbootable_recovery-dc49ce453efee52044287a2d0139996952f71170.zip
bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.gz
bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.bz2
add missing sparseness parameter
Change-Id: Ie6e309b127e80cd6475f1deaa5dbadf9f5cc2746
Diffstat (limited to 'updater/install.c')
-rw-r--r--updater/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/install.c b/updater/install.c
index 6a8c5d4..685b979 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -237,7 +237,7 @@ Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
#ifdef USE_EXT4
} else if (strcmp(fs_type, "ext4") == 0) {
reset_ext4fs_info();
- int status = make_ext4fs(location, NULL, NULL, 0, 0);
+ int status = make_ext4fs(location, NULL, NULL, 0, 0, 0);
if (status != 0) {
fprintf(stderr, "%s: make_ext4fs failed (%d) on %s",
name, status, location);