diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-09-13 03:40:53 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:28 +0000 |
commit | 95cafe4fb4046d29bfc21c039927c7287a2c5e3d (patch) | |
tree | 96020d8e2a6397fe1f2c32dcf66fb275ce11586a | |
parent | 4304cd79e05dfa71effb48b12a8c72d1d14a2002 (diff) |
Fixed stupid mutability bug.
-rw-r--r-- | Cydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |