Skip to content

Commit a3b4fc7

Browse files
committed
Fix compiler error in audiounit backend
1 parent 864fe27 commit a3b4fc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cubeb_audiounit.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2969,7 +2969,7 @@ static int
29692969
audiounit_stream_get_position(cubeb_stream * stm, uint64_t * position)
29702970
{
29712971
assert(stm);
2972-
uint32_t latency_frames = stm->total_output_latency_frames + cubeb_resampler_latency(stm->resampler.get())
2972+
uint32_t latency_frames = stm->total_output_latency_frames + cubeb_resampler_latency(stm->resampler.get());
29732973

29742974
if (latency_frames > stm->frames_played) {
29752975
*position = 0;

0 commit comments

Comments
 (0)