Skip to content

Commit

Permalink
Fix a lint issue and another minor tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Sep 20, 2023
1 parent e6cdb16 commit 030a4fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libs/acn/DMPE131Inflator.cpp
Expand Up @@ -159,8 +159,9 @@ bool DMPE131Inflator::HandlePDUData(uint32_t vector,
// HTP Merge
universe_iter->second.buffer->Reset();
std::vector<dmx_source>::const_iterator source_iter =
universe_iter->second.sources.begin();
for (; source_iter != universe_iter->second.sources.end(); ++source_iter) {
universe_iter->second.sources.begin();
for (; source_iter != universe_iter->second.sources.end();
++source_iter) {
universe_iter->second.buffer->HTPMerge(source_iter->buffer);
}
universe_iter->second.closure->Run();
Expand Down

0 comments on commit 030a4fd

Please sign in to comment.