Skip to content

Commit 8e885c1

Browse files
erwinpan1gmarcosb
authored andcommitted
[Chef] Add semicolon to fix compilation failure on MacOS (project-chip#37373)
* Add semicolon to fix compilation failure on MacOS * Fix indent
1 parent 9edb0c1 commit 8e885c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/chef/common/stubs.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -336,11 +336,11 @@ void emberAfWakeOnLanClusterInitCallback(EndpointId endpoint)
336336

337337
void ApplicationInit()
338338
{
339-
ChipLogProgress(NotSpecified, "Chef Application Init !!!")
339+
ChipLogProgress(NotSpecified, "Chef Application Init !!!");
340340

341341
#ifdef MATTER_DM_PLUGIN_REFRIGERATOR_ALARM_SERVER
342-
// set Parent Endpoint and Composition Type for an Endpoint
343-
EndpointId kRefEndpointId = 1;
342+
// set Parent Endpoint and Composition Type for an Endpoint
343+
EndpointId kRefEndpointId = 1;
344344
EndpointId kColdCabinetEndpointId = 2;
345345
EndpointId kFreezeCabinetEndpointId = 3;
346346
SetTreeCompositionForEndpoint(kRefEndpointId);
@@ -354,7 +354,7 @@ void ApplicationInit()
354354

355355
void ApplicationShutdown()
356356
{
357-
ChipLogProgress(NotSpecified, "Chef Application Down !!!")
357+
ChipLogProgress(NotSpecified, "Chef Application Down !!!");
358358
}
359359

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

0 commit comments

Comments
 (0)