From e48abb17948e088959c72f69392bddddb3f81c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Wed, 20 Apr 2016 16:03:10 +0100 Subject: [PATCH] Set libparted name for Reiser4 to be reiserfs. libparted does not support reiser4 filesystems, so formatting returned an error. --- src/plugins/libparted/libpartedpartitiontable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/libparted/libpartedpartitiontable.cpp b/src/plugins/libparted/libpartedpartitiontable.cpp index 0ae992b..6cc2421 100644 --- a/src/plugins/libparted/libpartedpartitiontable.cpp +++ b/src/plugins/libparted/libpartedpartitiontable.cpp @@ -123,7 +123,7 @@ static const struct { { FileSystem::Ntfs, QStringLiteral("ntfs") }, { FileSystem::Exfat, QStringLiteral("ntfs") }, { FileSystem::ReiserFS, QStringLiteral("reiserfs") }, - { FileSystem::Reiser4, QStringLiteral("reiser4") }, + { FileSystem::Reiser4, QStringLiteral("reiserfs") }, { FileSystem::Xfs, QStringLiteral("xfs") }, { FileSystem::Jfs, QStringLiteral("jfs") }, { FileSystem::Hfs, QStringLiteral("hfs") },