Fix warning distinct Objective-C type

failedCount is a NSDictionary *, not NSMutableDictionary *
pull/85/head
Jesús García Sáez 2015-05-20 15:24:00 +02:00
parent 04ce8d1066
commit 7990e23aaa
1 changed files with 2 additions and 1 deletions

View File

@ -488,7 +488,8 @@ static Class NSNullK;
grace: (int *) _grace
useCache: (BOOL) useCache
{
NSMutableDictionary *currentUser, *failedCount;
NSMutableDictionary *currentUser;
NSDictionary *failedCount;
NSString *dictPassword, *username, *jsonUser;
SOGoSystemDefaults *dd;
BOOL checkOK;