Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix comment placement
Browse files Browse the repository at this point in the history
jepenven-silabs committed Nov 27, 2023
1 parent b74fef0 commit d2d153c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/icd/ICDCheckInSender.cpp
Original file line number Diff line number Diff line change
@@ -69,11 +69,11 @@ CHIP_ERROR ICDCheckInSender::SendCheckInMsg(const Transport::PeerAddress & addr)

VerifyOrReturnError(mExchangeManager->GetSessionManager() != nullptr, CHIP_ERROR_INTERNAL);

// Using default MRP since we are not doing MRP in this context
Optional<SessionHandle> session =
mExchangeManager->GetSessionManager()->CreateUnauthenticatedSession(addr, GetDefaultMRPConfig());
VerifyOrReturnError(session.HasValue(), CHIP_ERROR_NO_MEMORY);

// Using default MRP since we are not doing MRP in this context
Messaging::ExchangeContext * exchangeContext = mExchangeManager->NewContext(session.Value(), nullptr);

VerifyOrReturnError(exchangeContext != nullptr, CHIP_ERROR_NO_MEMORY);

0 comments on commit d2d153c

Please sign in to comment.