Browse Source

Typos.

tags/v1.9.10
Stephane Letz 12 years ago
parent
commit
a61302992d
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      common/JackNetAPI.cpp
  2. +1
    -1
      common/JackNetInterface.h

+ 2
- 2
common/JackNetAPI.cpp View File

@@ -846,13 +846,13 @@ struct JackNetExtSlave : public JackNetSlaveInterface, public JackRunnableInterf
void DummyProcess()
{
// First cycle with INT_MAX time out
SetPackedTimeOut(INT_MAX);
SetPacketTimeOut(INT_MAX);
// One cycle
Process();
// Then use PACKET_TIMEOUT for next cycles
SetPackedTimeOut(PACKET_TIMEOUT);
SetPacketTimeOut(PACKET_TIMEOUT);
}

int Process()


+ 1
- 1
common/JackNetInterface.h View File

@@ -113,7 +113,7 @@ namespace Jack
int FinishRecv(NetAudioBuffer* buffer);
void SetRcvTimeOut();
void SetPackedTimeOut(int time_out)
void SetPacketTimeOut(int time_out)
{
// New time out
fPacketTimeOut = time_out;


Loading…
Cancel
Save