Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1418 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.63
sletz 19 years ago
parent
commit
bf9d363021
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/testSynchroServer.cpp

+ 2
- 2
tests/testSynchroServer.cpp View File

@@ -61,7 +61,7 @@ using namespace Jack;
LARGE_INTEGER gFreq;
long gQueryOverhead;

static long elapsed (LARGE_INTEGER * t1, LARGE_INTEGER *t2)
static long elapsed (LARGE_INTEGER* t1, LARGE_INTEGER* t2)
{
long high = t1->HighPart - t2->HighPart;
double low = t1->LowPart - t2->LowPart;
@@ -106,7 +106,7 @@ class Test1 : public JackRunnableInterface
#ifdef WIN32
LARGE_INTEGER t1, t2;
BOOL r1, r2;
r1 = QueryPerformanceCounter (&t1);
r1 = QueryPerformanceCounter(&t1);
#else
struct timeval T0, T1;
clock_t time1, time2;


Loading…
Cancel
Save