Skip to content

Commit

Permalink
Fix clang tidy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nivi-apple committed Nov 3, 2023
1 parent 52ec06e commit baca50e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ LogSessionHandle LogProvider::StartLogCollection(IntentEnum logType)
}
sLogSessionHandle++;
mLogSessionHandle = sLogSessionHandle;
return mLogSessionHandle;
}
else
{
return kInvalidLogSessionHandle;
mLogSessionHandle = kInvalidLogSessionHandle;
}
return mLogSessionHandle;
}

uint64_t LogProvider::GetNextChunk(LogSessionHandle logSessionHandle, chip::MutableByteSpan & outBuffer, bool & outIsEOF)
Expand Down

0 comments on commit baca50e

Please sign in to comment.