From 188626584cf932c56c90c0e40b7b444e2c4f6859 Mon Sep 17 00:00:00 2001 From: Thirupathi S Date: Fri, 31 May 2024 18:30:58 +0530 Subject: [PATCH] build error solved --- examples/lighting-app/tizen/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/lighting-app/tizen/src/main.cpp b/examples/lighting-app/tizen/src/main.cpp index bb50a1bf3bd0d7..a064f1acb0963c 100644 --- a/examples/lighting-app/tizen/src/main.cpp +++ b/examples/lighting-app/tizen/src/main.cpp @@ -103,7 +103,7 @@ void MatterPostAttributeChangeCallback(const chip::app::ConcreteAttributePath & switch (attributePath.mAttributeId) { case Clusters::ColorControl::Attributes::ColorMode::Id: - sDBusInterface.SetColorMode(static_cast(*value)); + sDBusInterface.SetColorMode(static_cast(*value)); break; case Clusters::ColorControl::Attributes::ColorTemperatureMireds::Id: VerifyOrDie(size == sizeof(uint16_t));