]> git.saurik.com Git - cydia.git/commitdiff
Fixed stupid mutability bug.
authorJay Freeman (saurik) <saurik@saurk.com>
Sat, 13 Sep 2008 03:40:53 +0000 (03:40 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 30 Sep 2010 07:08:28 +0000 (07:08 +0000)
Cydia.mm

index 1ad22345b4081b5d266630065c0edd20ec8beac0..2caecf00e1f3c74f1cb3348550ed0f64ef89bf29 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -2673,7 +2673,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 
 #define Cache_ "/User/Library/Caches/com.apple.mobile.installation.plist"
 
-    if (NSMutableDictionary *cache = [[NSDictionary alloc] initWithContentsOfFile:@ Cache_]) {
+    if (NSMutableDictionary *cache = [[NSMutableDictionary alloc] initWithContentsOfFile:@ Cache_]) {
         [cache autorelease];
 
         NSFileManager *manager = [NSFileManager defaultManager];