Merge branch 'fix_a_grammar_error' into 'main'

components/esp_matter: fix a small syntax error

See merge request app-frameworks/esp-matter!1401
This commit is contained in:
Shu Chen
2026-01-15 11:10:06 +00:00
@@ -88,7 +88,7 @@ void ESPMatterTimeFormatLocalizationClusterServerShutdownCallback(EndpointId end
CHIP_ERROR err = esp_matter::data_model::provider::get_instance().registry().Unregister(&gServer.Cluster()); CHIP_ERROR err = esp_matter::data_model::provider::get_instance().registry().Unregister(&gServer.Cluster());
if (err != CHIP_NO_ERROR) { 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(); gServer.Destroy();
} }