Repository: cordova-plugin-contacts Updated Branches: refs/heads/dev db17e0b24 -> 0d7bf3980
CB-6212 iOS: fix warnings compiled under arm64 64-bit Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/commit/0d7bf398 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/tree/0d7bf398 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/diff/0d7bf398 Branch: refs/heads/dev Commit: 0d7bf3980516b577deae0ff7f365b5c53116cbc1 Parents: db17e0b Author: James Jong <[email protected]> Authored: Tue Mar 11 13:28:34 2014 -0400 Committer: James Jong <[email protected]> Committed: Tue Mar 11 13:28:34 2014 -0400 ---------------------------------------------------------------------- src/ios/CDVContact.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/blob/0d7bf398/src/ios/CDVContact.m ---------------------------------------------------------------------- diff --git a/src/ios/CDVContact.m b/src/ios/CDVContact.m index 82704ea..5bf9f3c 100644 --- a/src/ios/CDVContact.m +++ b/src/ios/CDVContact.m @@ -1706,7 +1706,7 @@ static NSDictionary* org_apache_cordova_contacts_defaultFields = nil; BOOL bFound = NO; NSArray* values = [self valuesForProperty:propId inRecord:self.record]; // array of dictionaries (as CFDictionaryRef) - int dictCount = [values count]; + NSUInteger dictCount = [values count]; // for ims dictionary contains with service (w3C type) and username (W3c value) // for addresses dictionary contains street, city, state, zip, country
