Skip to content

Commit

Permalink
Fix PartitionTable bool() operator
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Mar 9, 2024
1 parent 8ba44cb commit 5a04f54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PartitionTable

explicit operator bool() const
{
return mEntries.isEmpty();
return !mEntries.isEmpty();
}

/**
Expand Down

0 comments on commit 5a04f54

Please sign in to comment.