Oops. Fix recursive typo in xrun callback.

This commit is contained in:
Jonathan Moore Liles 2008-04-29 12:37:40 -05:00
parent 55e1c3546f
commit 7452987e05
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ Engine::sync ( jack_transport_state_t state, jack_position_t *pos, void *arg )
int
Engine::xrun ( void *arg )
{
return ((Engine*)arg)->xrun( arg );
return ((Engine*)arg)->xrun();
}