Skip to content

Commit

Permalink
diagnostic-logs-cluster: remove default parameter from Reset() method
Browse files Browse the repository at this point in the history
  • Loading branch information
esp committed Dec 11, 2024
1 parent 5ca918e commit 2697dd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void BDXDiagnosticLogsProvider::OnAckEOFReceived()
{
ChipLogProgress(BDX, "Diagnostic logs transfer: Success");

Reset();
Reset(CHIP_NO_ERROR);
}

void BDXDiagnosticLogsProvider::OnStatusReceived(TransferSession::OutputEvent & event)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class BDXDiagnosticLogsProvider : public bdx::Initiator
* @param[in] error A CHIP_ERROR value indicating the reason for resetting the state.
* It is permissible to pass CHIP_NO_ERROR to indicate normal termination.
*/
void Reset(CHIP_ERROR error = CHIP_NO_ERROR);
void Reset(CHIP_ERROR error);

Messaging::ExchangeContext * mBDXTransferExchangeCtx;
DiagnosticLogsProviderDelegate * mDelegate;
Expand Down

0 comments on commit 2697dd9

Please sign in to comment.