Skip to content

Commit 4593e5b

Browse files
restyled-commitstehampson
authored andcommitted
Restyled by clang-format
1 parent 1cf8ef8 commit 4593e5b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

examples/fabric-admin/rpc/RpcServer.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class FabricAdmin final : public rpc::FabricAdmin, public IcdManager::Delegate
4848
void OnCheckInCompleted(const chip::app::ICDClientInfo & clientInfo) override
4949
{
5050
NodeId nodeId = clientInfo.peer_node.GetNodeId();
51-
auto it = mPendingCheckIn.find(nodeId);
51+
auto it = mPendingCheckIn.find(nodeId);
5252
VerifyOrReturn(it != mPendingCheckIn.end());
5353

5454
KeepActiveDataForCheckIn checkInData = it->second;
@@ -59,8 +59,10 @@ class FabricAdmin final : public rpc::FabricAdmin, public IcdManager::Delegate
5959
auto timeNow = System::SystemClock().GetMonotonicTimestamp();
6060
if (timeNow > checkInData.mRequestExpiryTimestamp)
6161
{
62-
ChipLogError(NotSpecified,
63-
"ICD check-in for device we have been waiting, came after KeepActive expiry. Reqeust dropped for Node ID: 0x%lx", nodeId);
62+
ChipLogError(
63+
NotSpecified,
64+
"ICD check-in for device we have been waiting, came after KeepActive expiry. Reqeust dropped for Node ID: 0x%lx",
65+
nodeId);
6466
return;
6567
}
6668

0 commit comments

Comments
 (0)