Skip to content

Commit

Permalink
Fix iOS CHIPTool build. (#6514)
Browse files Browse the repository at this point in the history
This is due to a merge conflict between PR #6233 nd PR #6442.  The
completion handlers got renamed to response handlers in the latter,
but the former is still calling one of them completionHandler.
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Sep 8, 2021
1 parent b6d3700 commit 53d4275
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ - (void)setVendorIDOnAccessory
endpoint:0
queue:dispatch_get_main_queue()];
[opCreds setFabric:kCHIPToolTmpVendorId
completionHandler:^(NSError * _Nullable error, NSDictionary * _Nullable values) {
responseHandler:^(NSError * _Nullable error, NSDictionary * _Nullable values) {
if (error.code != CHIPSuccess) {
NSLog(@"Got back error trying to getFabricId %@", error);
} else {
Expand Down

0 comments on commit 53d4275

Please sign in to comment.