@@ -59,7 +59,7 @@ class ClusterCommand : public InteractionModelCommands, public ModelCommand, pub
59
59
chip::CommandId commandId,
60
60
const chip::app::Clusters::DiagnosticLogs::Commands::RetrieveLogsRequest::Type & value)
61
61
{
62
- mPeerNodeId = device->GetDeviceId ();
62
+ mPeerNodeId = device->GetDeviceId ();
63
63
mFabricIndex = device->GetSecureSession ().Value ()->GetFabricIndex ();
64
64
ReturnErrorOnFailure (InteractionModelCommands::SendCommand (device, endpointId, clusterId, commandId, value));
65
65
@@ -111,10 +111,10 @@ class ClusterCommand : public InteractionModelCommands, public ModelCommand, pub
111
111
return ;
112
112
}
113
113
}
114
- if ((path.mEndpointId == chip::kRootEndpointId ) && (path.mClusterId == chip::app::Clusters::IcdManagement::Id) && (path.mCommandId == chip::app::Clusters::IcdManagement::Commands::UnregisterClient::Id))
114
+ if ((path.mEndpointId == chip::kRootEndpointId ) && (path.mClusterId == chip::app::Clusters::IcdManagement::Id) &&
115
+ (path.mCommandId == chip::app::Clusters::IcdManagement::Commands::UnregisterClient::Id))
115
116
{
116
- CHIP_ERROR deleteEntryError =
117
- CHIPCommand::sICDClientStorage .DeleteEntry (chip::ScopedNodeId (mPeerNodeId , mFabricIndex ));
117
+ CHIP_ERROR deleteEntryError = CHIPCommand::sICDClientStorage .DeleteEntry (chip::ScopedNodeId (mPeerNodeId , mFabricIndex ));
118
118
if (deleteEntryError != CHIP_NO_ERROR)
119
119
{
120
120
ChipLogError (chipTool, " Failed to delete ICD entry: %s" , chip::ErrorStr (deleteEntryError));
@@ -220,7 +220,7 @@ class ClusterCommand : public InteractionModelCommands, public ModelCommand, pub
220
220
chip::ClusterId mClusterId ;
221
221
chip::CommandId mCommandId ;
222
222
chip::FabricIndex mFabricIndex = 0 ;
223
- chip::NodeId mPeerNodeId = 0 ;
224
- CHIP_ERROR mError = CHIP_NO_ERROR;
223
+ chip::NodeId mPeerNodeId = 0 ;
224
+ CHIP_ERROR mError = CHIP_NO_ERROR;
225
225
CustomArgument mPayload ;
226
226
};
0 commit comments