From 53d4275278586d6b33a1cf97ae6144a4400bf373 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Thu, 6 May 2021 11:02:39 -0400 Subject: [PATCH] Fix iOS CHIPTool build. (#6514) 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. --- .../CHIPTool/View Controllers/QRCode/QRCodeViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/darwin/CHIPTool/CHIPTool/View Controllers/QRCode/QRCodeViewController.m b/src/darwin/CHIPTool/CHIPTool/View Controllers/QRCode/QRCodeViewController.m index 11ec3c147fdf14..834d6adf23138d 100644 --- a/src/darwin/CHIPTool/CHIPTool/View Controllers/QRCode/QRCodeViewController.m +++ b/src/darwin/CHIPTool/CHIPTool/View Controllers/QRCode/QRCodeViewController.m @@ -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 {