From 527cc0b7a4d2a72f38d6f956a03864391f5562f1 Mon Sep 17 00:00:00 2001 From: Mohamad Ayyash Date: Fri, 19 Feb 2016 21:16:38 +0000 Subject: [PATCH] Revert "Update make_ext4fs_internal param-list to match new implementation" This reverts commit 6d94dfee451dccc07c9c158da97f9393ac4e0a83. Change-Id: Iec0832740e321e31a78a31d5358542d2ed4455fa --- fs_mgr/fs_mgr_format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs_mgr/fs_mgr_format.c b/fs_mgr/fs_mgr_format.c index 011ec28da..c73045d44 100644 --- a/fs_mgr/fs_mgr_format.c +++ b/fs_mgr/fs_mgr_format.c @@ -52,7 +52,7 @@ static int format_ext4(char *fs_blkdev, char *fs_mnt_point) info.len = ((off64_t)nr_sec * 512); /* Use make_ext4fs_internal to avoid wiping an already-wiped partition. */ - rc = make_ext4fs_internal(fd, NULL, NULL, fs_mnt_point, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL); + rc = make_ext4fs_internal(fd, NULL, NULL, fs_mnt_point, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL); if (rc) { ERROR("make_ext4fs returned %d.\n", rc); }