size_t vs int compare fix (#438)

This commit is contained in:
Nathan Schulte 2024-06-03 13:27:29 -05:00 committed by GitHub
parent 72b0e74fcc
commit 4351a8b1bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ static void writeEvents(const std::vector<CompositeEvent>& events) {
uint32_t prevTs = 0;
int deltaCount = 0;
for (int i = 0; i < count; i++) {
for (size_t i = 0; i < count; i++) {
const CompositeEvent* event = &events[i];
int chState = getChannelState(ch, event);