mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
Fix compiler warning about \0, use \n instead
This commit is contained in:
parent
afb7863891
commit
5c79534df4
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ Jack::Jack( std::string name ) :
|
||||||
if(gui->enablePerTrackOutput)
|
if(gui->enablePerTrackOutput)
|
||||||
{
|
{
|
||||||
char name[50];
|
char name[50];
|
||||||
sprintf(name,"track_%d\0",i);
|
sprintf(name,"track_%d\n",i);
|
||||||
trackJackOutputPorts[i]=jack_port_register( client,
|
trackJackOutputPorts[i]=jack_port_register( client,
|
||||||
name,
|
name,
|
||||||
JACK_DEFAULT_AUDIO_TYPE,
|
JACK_DEFAULT_AUDIO_TYPE,
|
||||||
|
|
Loading…
Add table
Reference in a new issue