Browse Source

Cleanup.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/branches/libjacknet@3920 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.8
sletz 15 years ago
parent
commit
a449e6e1fa
2 changed files with 2 additions and 5 deletions
  1. +1
    -1
      common/JackEngineProfiling.cpp
  2. +1
    -4
      common/JackNetAPI.cpp

+ 1
- 1
common/JackEngineProfiling.cpp View File

@@ -67,7 +67,7 @@ JackEngineProfiling::~JackEngineProfiling()
int ref = fIntervalTable[j].fRefNum;
// Is valid client cycle
if (fProfileTable[i].fClientTable[ref].fStatus != NotTriggered) {
if (fProfileTable[i].fClientTable[ref].fStatus != NotTriggered) {
long d5 = long(fProfileTable[i].fClientTable[ref].fSignaledAt - fProfileTable[i - 1].fCurCycleBegin);
long d6 = long(fProfileTable[i].fClientTable[ref].fAwakeAt - fProfileTable[i - 1].fCurCycleBegin);


+ 1
- 4
common/JackNetAPI.cpp View File

@@ -23,7 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackError.h"
#include "JackTime.h"
#include "JackException.h"

#include "JackAudioAdapterInterface.h"

#ifdef __cplusplus
@@ -242,7 +241,7 @@ struct JackNetExtMaster : public JackNetMasterInterface {
int MasterInit()
{
// Check MASTER <<==> SLAVE network protocol coherency
// Check MASTER <==> SLAVE network protocol coherency
if (fParams.fProtocolVersion != MASTER_PROTOCOL) {
fprintf(stderr, "Error : slave is running with a different protocol %s\n", fParams.fName);
return -1;
@@ -355,7 +354,6 @@ struct JackNetExtMaster : public JackNetMasterInterface {
return 0;

DecodeSyncPacket();
return DataRecv();
}

@@ -615,7 +613,6 @@ struct JackNetExtSlave : public JackNetSlaveInterface, public JackRunnableInterf
return 0;

DecodeSyncPacket();
return DataRecv();
}



Loading…
Cancel
Save