summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/MDV/Draklive/Utils.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDV/Draklive/Utils.pm b/lib/MDV/Draklive/Utils.pm
index 94be289..d1499dd 100644
--- a/lib/MDV/Draklive/Utils.pm
+++ b/lib/MDV/Draklive/Utils.pm
@@ -66,7 +66,7 @@ sub device_allocate_file {
sub device_mkfs {
my ($device, $type, $o_label, $o_inode_size) = @_;
if ($type eq 'vfat') {
- run_('mkfs.vfat', if_(defined $o_label, '-L', $o_label), $device);
+ run_('mkfs.vfat', if_(defined $o_label, '-n', $o_label), $device);
} elsif (member($type, 'ext2', 'ext3', 'ext4')) {
run_("mkfs.$type", "-m", 0,
if_(defined $o_label, '-L', $o_label),