diff options
author | Colin Cross <ccross@android.com> | 2011-01-05 17:19:03 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-01-05 17:19:37 -0800 |
commit | 49396b79b5aa49db55b5325255fb07eb21c069cd (patch) | |
tree | 88fde3f03b9555d952bbe843282c6a49400114a1 | |
parent | 264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b (diff) | |
download | bootable_recovery-49396b79b5aa49db55b5325255fb07eb21c069cd.zip bootable_recovery-49396b79b5aa49db55b5325255fb07eb21c069cd.tar.gz bootable_recovery-49396b79b5aa49db55b5325255fb07eb21c069cd.tar.bz2 |
Update make_ext4fs arguments in roots.c
Change-Id: I835e55fb80add6a74cd4d99f77b2528829d9a349
-rw-r--r-- | roots.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -239,7 +239,7 @@ int format_volume(const char* volume) { if (strcmp(v->fs_type, "ext4") == 0) { reset_ext4fs_info(); - int result = make_ext4fs(v->device, NULL, NULL, 0, 0, 0); + int result = make_ext4fs(v->device, NULL, NULL, 0, 0, 0, 0); if (result != 0) { LOGE("format_volume: make_extf4fs failed on %s\n", v->device); return -1; |