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.
Restyled by clang-format
Browse files Browse the repository at this point in the history
restyled-commits authored and tehampson committed Aug 8, 2024
1 parent ef8ac0c commit 19b7ba2
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/fabric-admin/rpc/RpcClient.cpp
Original file line number Diff line number Diff line change
@@ -203,7 +203,7 @@ CHIP_ERROR ActiveChanged(chip::NodeId nodeId, uint32_t promisedActiveDurationMs)
ChipLogProgress(NotSpecified, "ActiveChanged");

chip_rpc_KeepActiveChanged parameters;
parameters.node_id = nodeId;
parameters.node_id = nodeId;
parameters.promised_active_duration_ms = promisedActiveDurationMs;

// The RPC call is kept alive until it completes. When a response is received, it will be logged by the handler
2 changes: 1 addition & 1 deletion examples/fabric-bridge-app/linux/RpcClient.cpp
Original file line number Diff line number Diff line change
@@ -165,7 +165,7 @@ OpenCommissioningWindow(chip::Controller::CommissioningWindowVerifierParams para
CHIP_ERROR KeepActive(chip::NodeId nodeId, uint32_t stayActiveDurationMs)
{
chip_rpc_KeepActiveParameters params;
params.node_id = nodeId;
params.node_id = nodeId;
params.stay_active_duration_ms = stayActiveDurationMs;

// The RPC call is kept alive until it completes. When a response is received, it will be logged by the handler

0 comments on commit 19b7ba2

Please sign in to comment.