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.
pull/201/head
Patrice Levesque 2016-02-17 11:05:24 -05:00
parent 3ba0e9f82f
commit 478b313122
1 changed files with 1 additions and 1 deletions

View File

@ -895,7 +895,7 @@ _compareFetchResultsByMODSEQ (id entry1, id entry2, void *data)
}
}
return error;
return (WOResponse *) error;
}
- (NSDictionary *) statusForFlags: (NSArray *) flags