mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 03:15:25 +00:00
Fix warning: distinct Objective-C type in return
Method is supposed to return a WOResponse pointer, but currently returns a NSException pointer; typecast the return value, just like the archiveUIDs method does.
This commit is contained in:
@@ -895,7 +895,7 @@ _compareFetchResultsByMODSEQ (id entry1, id entry2, void *data)
|
||||
}
|
||||
}
|
||||
|
||||
return error;
|
||||
return (WOResponse *) error;
|
||||
}
|
||||
|
||||
- (NSDictionary *) statusForFlags: (NSArray *) flags
|
||||
|
||||
Reference in New Issue
Block a user