Skip to content

Commit

Permalink
Fix build error due to undefined kAnyNodeId (#8567)
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian-Nordic authored and pull[bot] committed Sep 20, 2021
1 parent 2f6df9b commit 4685274
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/platform/linux/AppMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <app/server/OnboardingCodesUtil.h>
#include <app/server/Server.h>
#include <core/CHIPError.h>
#include <core/NodeId.h>
#include <setup_payload/QRCodeSetupPayloadGenerator.h>
#include <setup_payload/SetupPayload.h>
#include <support/CHIPMem.h>
Expand Down Expand Up @@ -165,7 +166,7 @@ ExampleOperationalCredentialsIssuer gOpCredsIssuer;

CHIP_ERROR InitCommissioner()
{
NodeId localId = chip::kAnyNodeId;
NodeId localId = chip::kPlaceholderNodeId;

chip::Controller::CommissionerInitParams params;

Expand Down

0 comments on commit 4685274

Please sign in to comment.