@@ -83,7 +83,7 @@ CHIP_ERROR FabricSyncAddBridgeCommand::RunCommand(NodeId remoteId)
83
83
if (DeviceMgr ().IsFabricSyncReady ())
84
84
{
85
85
// print to console
86
- fprintf (stderr, " Remote Fabric Bridge has already been configured." );
86
+ fprintf (stderr, " Remote Fabric Bridge has already been configured.\n " );
87
87
return CHIP_NO_ERROR;
88
88
}
89
89
@@ -126,7 +126,7 @@ CHIP_ERROR FabricSyncRemoveBridgeCommand::RunCommand()
126
126
if (bridgeNodeId == kUndefinedNodeId )
127
127
{
128
128
// print to console
129
- fprintf (stderr, " Remote Fabric Bridge is not configured yet, nothing to remove." );
129
+ fprintf (stderr, " Remote Fabric Bridge is not configured yet, nothing to remove.\n " );
130
130
return CHIP_NO_ERROR;
131
131
}
132
132
@@ -176,7 +176,7 @@ CHIP_ERROR FabricSyncAddLocalBridgeCommand::RunCommand(NodeId deviceId)
176
176
if (DeviceMgr ().IsLocalBridgeReady ())
177
177
{
178
178
// print to console
179
- fprintf (stderr, " Local Fabric Bridge has already been configured." );
179
+ fprintf (stderr, " Local Fabric Bridge has already been configured.\n " );
180
180
return CHIP_NO_ERROR;
181
181
}
182
182
@@ -227,7 +227,7 @@ CHIP_ERROR FabricSyncRemoveLocalBridgeCommand::RunCommand()
227
227
if (bridgeNodeId == kUndefinedNodeId )
228
228
{
229
229
// print to console
230
- fprintf (stderr, " Local Fabric Bridge is not configured yet, nothing to remove." );
230
+ fprintf (stderr, " Local Fabric Bridge is not configured yet, nothing to remove.\n " );
231
231
return CHIP_NO_ERROR;
232
232
}
233
233
@@ -292,18 +292,18 @@ void FabricSyncDeviceCommand::OnCommissioningComplete(NodeId deviceId, CHIP_ERRO
292
292
}
293
293
}
294
294
295
- CHIP_ERROR FabricSyncDeviceCommand::RunCommand (EndpointId remoteId )
295
+ CHIP_ERROR FabricSyncDeviceCommand::RunCommand (EndpointId remoteEndpointId )
296
296
{
297
297
if (!DeviceMgr ().IsFabricSyncReady ())
298
298
{
299
299
// print to console
300
- fprintf (stderr, " Remote Fabric Bridge is not configured yet." );
300
+ fprintf (stderr, " Remote Fabric Bridge is not configured yet.\n " );
301
301
return CHIP_NO_ERROR;
302
302
}
303
303
304
304
PairingManager::Instance ().SetOpenCommissioningWindowDelegate (this );
305
305
306
- DeviceMgr ().OpenRemoteDeviceCommissioningWindow (remoteId );
306
+ DeviceMgr ().OpenRemoteDeviceCommissioningWindow (remoteEndpointId );
307
307
308
308
return CHIP_NO_ERROR;
309
309
}
0 commit comments