This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack2
mirror of
https://github.com/jackaudio/jack2
Watch
1
Star
0
Fork
0
Code
Releases
45
Activity
Browse Source
Correct error codes.
tags/1.9.9.5
Stephane Letz
14 years ago
parent
6483c0d5eb
commit
88dd4d2292
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
common/JackAPI.cpp
+1
-1
common/JackFrameTimer.cpp
+ 1
- 1
common/JackAPI.cpp
View File
@@ -1385,7 +1385,7 @@ LIB_EXPORT int jack_get_cycle_times(const jack_client_t *client,
control->ReadFrameTime(&timer);
return timer.GetCycleTimes(current_frames, current_usecs, next_usecs, period_usecs);
} else {
return 1;
return
-
1;
}
}
+ 1
- 1
common/JackFrameTimer.cpp
View File
@@ -98,7 +98,7 @@ int JackTimer::GetCycleTimes(jack_nframes_t* current_frames, jack_time_t* curren
*period_usecs = fPeriodUsecs;
return 0;
} else {
return 1;
return
-
1;
}
}
Write
Preview
Loading…
Cancel
Save