aboutsummaryrefslogtreecommitdiffstats
path: root/updater/install.c
diff options
context:
space:
mode:
authorKen Sumrall <ksumrall@android.com>2010-08-13 16:08:03 -0700
committerKen Sumrall <ksumrall@android.com>2010-08-13 19:22:47 -0700
commit8101125ee5068aff91f98c042660cb29576b8612 (patch)
treedc311ab0a7fb8fe2a3cd289935b8470dd5aa4dbc /updater/install.c
parent80dcee145ff6aa734b611133ef98045f940cf82c (diff)
downloadbootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.zip
bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.gz
bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.bz2
Changes to work with updated make_ext4fs tool that supports creating sparse images.
An extra parameter was added to the make_ext4fs() function, we these tools need to be updated to match. Change-Id: Id640a7f2b03153eb333b00337f0f991ff5332349
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);