Skip to content

Commit

Permalink
Fix: missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
GinyWang committed Sep 3, 2024
1 parent 6427a8a commit dd18eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/chef/common/stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,12 +262,12 @@ void emberAfWakeOnLanClusterInitCallback(EndpointId endpoint)

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

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 dd18eb9

Please sign in to comment.