From b1361edfaba228f02a3d6e7ed77bc14eaeba096d Mon Sep 17 00:00:00 2001 From: Mathieu Kardous Date: Tue, 29 Mar 2022 11:00:03 -0400 Subject: [PATCH] fix typo --- examples/light-switch-app/efr32/src/binding-handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/light-switch-app/efr32/src/binding-handler.cpp b/examples/light-switch-app/efr32/src/binding-handler.cpp index 41ad28c8e89768..6ce872e811ae47 100644 --- a/examples/light-switch-app/efr32/src/binding-handler.cpp +++ b/examples/light-switch-app/efr32/src/binding-handler.cpp @@ -249,7 +249,7 @@ CHIP_ERROR BindingUnicastBindCommandHandler(int argc, char ** argv) entry->nodeId = atoi(argv[1]); entry->local = 1; // Hardcoded to endpoint 1 for now entry->remote = atoi(argv[2]); - entry->clusterId.SetValue(6)); // Hardcode to OnOff cluster for now + entry->clusterId.SetValue(6); // Hardcode to OnOff cluster for now DeviceLayer::PlatformMgr().ScheduleWork(BindingWorkerFunction, reinterpret_cast(entry)); return CHIP_NO_ERROR;