diff options
author | Brian Swetland <swetland@google.com> | 2010-09-15 18:03:58 -0700 |
---|---|---|
committer | Brian Swetland <swetland@google.com> | 2010-09-15 18:03:58 -0700 |
commit | 792b00712bb1411d3b0583bcea95b43b3107fb95 (patch) | |
tree | e15356e5663ffb35985692b5f2c182e5647e91cc | |
parent | 8a8e6cc33cc0dcfe7e184b59d5ef1f1c29095509 (diff) | |
download | bootable_recovery-792b00712bb1411d3b0583bcea95b43b3107fb95.zip bootable_recovery-792b00712bb1411d3b0583bcea95b43b3107fb95.tar.gz bootable_recovery-792b00712bb1411d3b0583bcea95b43b3107fb95.tar.bz2 |
do not merge - update to match ext4utils api
Change-Id: I9d34e491022d7dfed653a861b0728a0a656f1fbe
-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 167b402..a596dc6 100644 --- a/updater/install.c +++ b/updater/install.c @@ -234,7 +234,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); |