Browse Source

Typo

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1784 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.70
sletz 17 years ago
parent
commit
d46a6202a9
2 changed files with 2 additions and 4 deletions
  1. +1
    -1
      ChangeLog
  2. +1
    -3
      common/JackEngine.cpp

+ 1
- 1
ChangeLog View File

@@ -19,7 +19,7 @@ Tim Blechmann

2008-01-28 Stephane Letz <letz@grame.fr>

* Updated API to match jack 0.109.0 version (in progress). Correct issue in CoreAudio driver.
* Updated API to match jack 0.109.0 version (in progress). Correct checking thread in CoreAudio driver.
* Port connection callback.

2008-01-25 Stephane Letz <letz@grame.fr>


+ 1
- 3
common/JackEngine.cpp View File

@@ -728,9 +728,7 @@ int JackEngine::PortDisconnect(int refnum, jack_port_id_t src, jack_port_id_t ds
}
}
*/
if (fGraphManager->DisconnectAll(src) < 0)
return -1;
return 0;
return fGraphManager->DisconnectAll(src);
} else if (fGraphManager->CheckPorts(src, dst) < 0) {
return -1;
} else if (fGraphManager->Disconnect(src, dst) == 0) {


Loading…
Cancel
Save