diff --git a/src/fs/fat16.cpp b/src/fs/fat16.cpp index 47d86d9..fa263cd 100644 --- a/src/fs/fat16.cpp +++ b/src/fs/fat16.cpp @@ -139,9 +139,9 @@ qint64 fat16::readUsedCapacity(const QString& deviceNode) const bool fat16::writeLabel(Report& report, const QString& deviceNode, const QString& newLabel) { - report.line() << xi18nc("@info:progress", "Setting label for partition %1 to %2", deviceNode, newLabel); + report.line() << xi18nc("@info:progress", "Setting label for partition %1 to %2", deviceNode, newLabel.toUpper()); - ExternalCommand cmd(report, QStringLiteral("fatlabel"), { deviceNode, newLabel }); + ExternalCommand cmd(report, QStringLiteral("fatlabel"), { deviceNode, newLabel.toUpper() }); return cmd.run(-1) && cmd.exitCode() == 0; }