components/esp_matter: Add missing semicolon

This commit is contained in:
YuanMingFu
2026-03-05 19:32:21 +08:00
parent d42e9d6f2e
commit ccdf2f5991
@@ -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();
}