From dd18eb9ef1f08736474c99fb49916715f6ea7779 Mon Sep 17 00:00:00 2001 From: GinyWang Date: Tue, 3 Sep 2024 13:31:29 +0800 Subject: [PATCH] Fix: missing semicolon --- examples/chef/common/stubs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/chef/common/stubs.cpp b/examples/chef/common/stubs.cpp index f7b4b491451b0e..8f04cb7135306a 100644 --- a/examples/chef/common/stubs.cpp +++ b/examples/chef/common/stubs.cpp @@ -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,