diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2009-05-05 06:14:55 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:13:14 +0000 |
commit | f871cf41e1eb2af727d9825e4fa289e1e8470ecf (patch) | |
tree | e1be9d93eff90a428c5fa38e45a838aee2171771 | |
parent | 6204f56a7d810316e2b93ef0214ca1c931c4c889 (diff) |
Duh: &&= is not a valid operator.
-rw-r--r-- | Cydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2176,7 +2176,7 @@ struct PackageNameOrdering : _end essential_ = ((iterator_->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES) || [self hasTag:@"cydia::essential"]; - visible_ &&= [self hasSupportingRole] && [self unfiltered]; + visible_ = visible_ && [self hasSupportingRole] && [self unfiltered]; } _end } return self; } |