Merge "Format volumes with "auto" filesystem type." into mnc-dev

This commit is contained in:
Jeff Sharkey
2015-06-09 03:25:05 +00:00
committed by Android (Google) Code Review

View File

@@ -1434,7 +1434,7 @@ class MountService extends IMountService.Stub
final VolumeInfo vol = findVolumeById(volId);
try {
mConnector.execute("volume", "format", vol.id);
mConnector.execute("volume", "format", vol.id, "auto");
} catch (NativeDaemonConnectorException e) {
throw e.rethrowAsParcelableException();
}