Skip to content

Commit

Permalink
Fix project-chip#13377 for compatibility with project-chip#13330
Browse files Browse the repository at this point in the history
The pull requests project-chip#13330 and project-chip#13377 were merged around the same time,
and have caused a small build breakage.  This fixes it.
  • Loading branch information
msandstedt committed Jan 7, 2022
1 parent 585cdcb commit 8f3933a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/shell/shell_common/cmd_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ static CHIP_ERROR CmdAppServerUdcPort(int argc, char ** argv)
static bool PrintServerSession(void * context, SessionHandle & session)
{
streamer_printf(streamer_get(), "session id=0x%04x peerSessionId=0x%04x peerNodeId=0x%016" PRIx64 " fabricIdx=%d\r\n",
session.GetLocalSessionId().Value(), session.GetPeerSessionId().Value(), session.GetPeerNodeId(),
session.GetFabricIndex());
session->AsSecureSession()->GetLocalSessionId(), session->AsSecureSession()->GetPeerSessionId(),
session->AsSecureSession()->GetPeerNodeId(), session->AsSecureSession()->GetFabricIndex());
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion third_party/pigweed/repo
Submodule repo updated 433 files

0 comments on commit 8f3933a

Please sign in to comment.