summaryrefslogtreecommitdiff
path: root/Cydia.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2009-05-05 06:14:55 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:13:14 +0000
commitf871cf41e1eb2af727d9825e4fa289e1e8470ecf (patch)
treee1be9d93eff90a428c5fa38e45a838aee2171771 /Cydia.mm
parent6204f56a7d810316e2b93ef0214ca1c931c4c889 (diff)
Duh: &&= is not a valid operator.
Diffstat (limited to 'Cydia.mm')
-rw-r--r--Cydia.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cydia.mm b/Cydia.mm
index 5b3eb80..7ccdaf3 100644
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -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;
}