Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Dec 17, 2014
1 parent 096e19b commit adcd7eb
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 adcd7eb

Please sign in to comment.