add missing sparseness parameter

Change-Id: Ie6e309b127e80cd6475f1deaa5dbadf9f5cc2746
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 @@
 #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);