whitespace

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1119522
This commit is contained in:
Volker Lanz 2010-04-27 10:14:54 +00:00
parent d08ce3ac78
commit 0649420740
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ qint64 PartitionAlignment::alignedFirstSector(const Device& d, const Partition&
while (s < d.partitionTable()->firstUsable() || s < min_first || (max_length > -1 && p.lastSector() - s + 1 > max_length))
s += sectorAlignment(d);
while (s > d.partitionTable()->lastUsable() || (max_first > -1 && s > max_first) || p.lastSector() - s + 1 < min_length)
while (s > d.partitionTable()->lastUsable() || (max_first > -1 && s > max_first) || p.lastSector() - s + 1 < min_length)
s -= sectorAlignment(d);
return s;