Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Dec 3, 2023
1 parent 491a829 commit 34f4396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patches/portaudio19/04_jackbridge-mod-app.patch
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ index a800f8e..c06eb89 100644
+ if( jackbridge_port_connected( stream->local_input_ports[i] ) )
{
- UNLESS( !jack_port_disconnect( stream->jack_client, stream->local_input_ports[i] ),
+ UNLESS( !jackbridge_port_disconnect( stream->jack_client, stream->local_input_ports[i] ),
+ UNLESS( jackbridge_port_disconnect( stream->jack_client, stream->local_input_ports[i] ),
paUnanticipatedHostError );
}
}
Expand All @@ -442,7 +442,7 @@ index a800f8e..c06eb89 100644
+ if( jackbridge_port_connected( stream->local_output_ports[i] ) )
{
- UNLESS( !jack_port_disconnect( stream->jack_client, stream->local_output_ports[i] ),
+ UNLESS( !jackbridge_port_disconnect( stream->jack_client, stream->local_output_ports[i] ),
+ UNLESS( jackbridge_port_disconnect( stream->jack_client, stream->local_output_ports[i] ),
paUnanticipatedHostError );
}
}
Expand Down

0 comments on commit 34f4396

Please sign in to comment.