Skip to content

Commit

Permalink
[Chef] Add semicolon to fix compilation failure on MacOS (#37373)
Browse files Browse the repository at this point in the history
* Add semicolon to fix compilation failure on MacOS

* Fix indent
  • Loading branch information
erwinpan1 authored Feb 4, 2025
1 parent 7912cad commit 7565353
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/chef/common/stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,11 +336,11 @@ void emberAfWakeOnLanClusterInitCallback(EndpointId endpoint)

void ApplicationInit()
{
ChipLogProgress(NotSpecified, "Chef Application Init !!!")
ChipLogProgress(NotSpecified, "Chef Application Init !!!");

#ifdef MATTER_DM_PLUGIN_REFRIGERATOR_ALARM_SERVER
// set Parent Endpoint and Composition Type for an Endpoint
EndpointId kRefEndpointId = 1;
// set Parent Endpoint and Composition Type for an Endpoint
EndpointId kRefEndpointId = 1;
EndpointId kColdCabinetEndpointId = 2;
EndpointId kFreezeCabinetEndpointId = 3;
SetTreeCompositionForEndpoint(kRefEndpointId);
Expand All @@ -354,7 +354,7 @@ void ApplicationInit()

void ApplicationShutdown()
{
ChipLogProgress(NotSpecified, "Chef Application Down !!!")
ChipLogProgress(NotSpecified, "Chef Application Down !!!");
}

// No-op function, used to force linking this file,
Expand Down

0 comments on commit 7565353

Please sign in to comment.