From 468527412b2f4908fba23b58e957b6677807d278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20Kr=C3=B3lik?= <66667989+Damian-Nordic@users.noreply.github.com> Date: Thu, 22 Jul 2021 15:38:12 +0200 Subject: [PATCH] Fix build error due to undefined kAnyNodeId (#8567) --- examples/platform/linux/AppMain.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/platform/linux/AppMain.cpp b/examples/platform/linux/AppMain.cpp index 9d02c95e9990e4..614a3618775866 100644 --- a/examples/platform/linux/AppMain.cpp +++ b/examples/platform/linux/AppMain.cpp @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -165,7 +166,7 @@ ExampleOperationalCredentialsIssuer gOpCredsIssuer; CHIP_ERROR InitCommissioner() { - NodeId localId = chip::kAnyNodeId; + NodeId localId = chip::kPlaceholderNodeId; chip::Controller::CommissionerInitParams params;