diff --git a/src/fs/udf.cpp b/src/fs/udf.cpp index 0400091..dbe1ea6 100644 --- a/src/fs/udf.cpp +++ b/src/fs/udf.cpp @@ -59,7 +59,6 @@ FileSystem::SupportTool udf::supportToolName() const return SupportTool(QStringLiteral("udftools"), QUrl(QStringLiteral("https://github.com/pali/udftools"))); } - qint64 udf::minCapacity() const { return MIN_UDF_BLOCKS * sectorSize(); diff --git a/src/plugins/libparted/libpartedpartitiontable.cpp b/src/plugins/libparted/libpartedpartitiontable.cpp index d98ab34..a71e426 100644 --- a/src/plugins/libparted/libpartedpartitiontable.cpp +++ b/src/plugins/libparted/libpartedpartitiontable.cpp @@ -116,7 +116,8 @@ static const struct { { FileSystem::Jfs, QStringLiteral("jfs") }, { FileSystem::Hfs, QStringLiteral("hfs") }, { FileSystem::HfsPlus, QStringLiteral("hfs+") }, - { FileSystem::Ufs, QStringLiteral("ufs") } + { FileSystem::Ufs, QStringLiteral("ufs") }, + { FileSystem::Udf, QStringLiteral("ntfs") } }; static PedFileSystemType* getPedFileSystemType(FileSystem::Type t)