From 2b39ff29d1d22bb037ad4a6166b6241734dcd24e Mon Sep 17 00:00:00 2001 From: liyashuai Date: Thu, 15 Jan 2026 14:00:44 +0800 Subject: [PATCH] components/esp_matter: fix a grammar error --- .../clusters/time_format_localization_integration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter/data_model_provider/clusters/time_format_localization_integration.cpp b/components/esp_matter/data_model_provider/clusters/time_format_localization_integration.cpp index 9111e0def..335c1fdce 100644 --- a/components/esp_matter/data_model_provider/clusters/time_format_localization_integration.cpp +++ b/components/esp_matter/data_model_provider/clusters/time_format_localization_integration.cpp @@ -88,7 +88,7 @@ void ESPMatterTimeFormatLocalizationClusterServerShutdownCallback(EndpointId end CHIP_ERROR err = esp_matter::data_model::provider::get_instance().registry().Unregister(&gServer.Cluster()); if (err != CHIP_NO_ERROR) { - ChipLogError(AppServer, "TimeFormatLocalization unregister error: %" CHIP_ERROR_FORMAT, err.Format()) + ChipLogError(AppServer, "TimeFormatLocalization unregister error: %" CHIP_ERROR_FORMAT, err.Format()); } gServer.Destroy(); }