auto import from //branches/cupcake_rel/...@140373
diff --git a/vold/format.c b/vold/format.c
index dd0515c..3383949 100755
--- a/vold/format.c
+++ b/vold/format.c
@@ -37,15 +37,14 @@
     devpath = blkdev_get_devpath(part);
 
     if (!strcmp(type, FORMAT_TYPE_FAT32)) {
-        char *args[7];
+        char *args[6];
         args[0] = MKDOSFS_PATH;
-        args[1] = "-F 32";
-        args[2] = "-c 32";
-        args[3] = "-n 2";
-        args[4] = "-O android";
-        args[5] = devpath;
-        args[6] = NULL;
-        rc = logwrap(6, args);
+        args[1] = "-c 32";
+        args[2] = "-n 2";
+        args[3] = "-O android";
+        args[4] = devpath;
+        args[5] = NULL;
+        rc = logwrap(5, args);
     } else {
         char *args[7];
         args[0] = MKE2FS_PATH;