Error in JackActivationCount::Signal now uses jack_log instead of jack_error.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4491 0c269be4-1314-0410-8aa9-9f06e86f4224
This commit is contained in:
sletz 2011-07-16 15:25:23 +00:00
parent 9d3a0ab4d4
commit e83d2ddc10
2 changed files with 6 additions and 2 deletions

View File

@ -35,6 +35,10 @@ Chris Caudle
Jackdmp changes log
---------------------------
2011-07-16 Stephane Letz <letz@grame.fr>
* Error in JackActivationCount::Signal now uses jack_log instead of jack_error.
2011-07-12 Stephane Letz <letz@grame.fr>
* NetJack2 now only send data on network only is ports are connected both sides.

View File

@ -12,7 +12,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
@ -30,7 +30,7 @@ bool JackActivationCount::Signal(JackSynchro* synchro, JackClientControl* contro
{
if (fValue == 0) {
// Transfer activation to next clients
jack_error("JackActivationCount::Signal value = 0 ref = %ld", control->fRefNum);
jack_log("JackActivationCount::Signal value = 0 ref = %ld", control->fRefNum);
return synchro->Signal();
} else if (DEC_ATOMIC(&fValue) == 1) {
return synchro->Signal();