don't output a warning if the partition is smaller than expected due to

aligning: we cannot know here if the warning is justified at all.

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1105196
This commit is contained in:
Volker Lanz 2010-03-19 14:07:57 +00:00
parent edca30b707
commit 6eab5deb08
1 changed files with 0 additions and 4 deletions

View File

@ -416,10 +416,6 @@ bool PartitionTable::alignPartition(const Device& d, Partition& p, const Partiti
p.fileSystem().setLastSector(p.fileSystem().lastSector() - sectorAlignment(d));
}
if (p.length() < originalLength)
Log(Log::warning) << i18ncp("@info/plain", "The partition cannot be created with the requested length of one sector, ", "The partition cannot be created with the requested length of %1 sectors, ", originalLength)
+ i18ncp("@info/plain", "and will instead only be one sector long.", "and will instead only be %1 sectors long.", p.length());
// In an extended partition we also need to align unallocated children at the beginning and at the end
// (there should never be a need to align non-unallocated children)
if (p.roles().has(PartitionRole::Extended))