Browse Source

Fix unused variable warning

tags/v0.9.0
falkTX 7 years ago
parent
commit
89fdc69433
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      c++/jackmeter/jackmeter.cpp

+ 2
- 6
c++/jackmeter/jackmeter.cpp View File

@@ -134,17 +134,13 @@ void reconnect_ports()
} }
else else
{ {
if (jack_port_t* const jRecPort1 = jackbridge_port_by_name(jClient, "system:capture_1"))
{
if (jackbridge_port_by_name(jClient, "system:capture_1") != nullptr)
if (! jackbridge_port_connected_to(jPort1, "system:capture_1")) if (! jackbridge_port_connected_to(jPort1, "system:capture_1"))
jackbridge_connect(jClient, "system:capture_1", nameIn1.toUtf8().constData()); jackbridge_connect(jClient, "system:capture_1", nameIn1.toUtf8().constData());
}


if (jack_port_t* const jRecPort2 = jackbridge_port_by_name(jClient, "system:capture_2"))
{
if (jackbridge_port_by_name(jClient, "system:capture_2") != nullptr)
if (! jackbridge_port_connected_to(jPort2, "system:capture_2")) if (! jackbridge_port_connected_to(jPort2, "system:capture_2"))
jackbridge_connect(jClient, "system:capture_2", nameIn2.toUtf8().constData()); jackbridge_connect(jClient, "system:capture_2", nameIn2.toUtf8().constData());
}
} }
} }




Loading…
Cancel
Save