mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 02:58:48 +00:00
[FRAGINATOR]
Use vector<>::empty() instead of vector<>::size() to check for vector emptyness svn path=/trunk/; revision=54031
This commit is contained in:
parent
cc5d780806
commit
c89df83f91
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ void Defragment::Start (void)
|
|||
continue;
|
||||
|
||||
// Can't defrag 0 byte files :)
|
||||
if (Info.Fragments.size() == 0)
|
||||
if (Info.Fragments.empty())
|
||||
continue;
|
||||
|
||||
// If doing fast defrag, skip non-fragmented files
|
||||
|
|
Loading…
Reference in a new issue