diff options
author | Doug Zongker <dougz@android.com> | 2010-09-16 03:05:10 +0200 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2010-09-16 03:05:10 +0200 |
commit | dc49ce453efee52044287a2d0139996952f71170 (patch) | |
tree | a8d5e6cdcecda5b508a4388dc2713770b20117a4 | |
parent | resolved conflicts for merge of 85bcf776 to master (diff) | |
download | android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.gz android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.bz2 android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.lz android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.xz android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.tar.zst android_bootable_recovery-dc49ce453efee52044287a2d0139996952f71170.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/install.c b/updater/install.c index 6a8c5d401..685b97906 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); |