Skip to content

Commit

Permalink
Merge branch 'master' of github.com:falkTX/JackAss
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Jan 13, 2019
2 parents 7e64146 + adcd7eb commit 3174416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JackAss.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static std::list<JackAssInstance*> gInstances;

static int jprocess_callback(const jack_nframes_t nframes, void*)
{
for (std::list<JackAssInstance*>::iterator it = gInstances.begin(); it != gInstances.end(); ++it)
for (std::list<JackAssInstance*>::iterator it = gInstances.begin(), end = gInstances.end(); it != end; ++it)
(*it)->jprocess(nframes);
return 0;
}
Expand Down

0 comments on commit 3174416

Please sign in to comment.