Skip to content

Commit

Permalink
missing {
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer authored Nov 20, 2024
1 parent 4ff2a82 commit 7bf45af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/portaudio/pa_ringbuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ ring_buffer_size_t PaUtil_InitializeRingBuffer( PaUtilRingBuffer *rbuf, ring_buf
/***************************************************************************
** Return number of elements available for reading. */
ring_buffer_size_t PaUtil_GetRingBufferReadAvailable( const PaUtilRingBuffer *rbuf )

{
return ( (__tsan_atomic64_load(&rbuf->writeIndex, __tsan_memory_order_relaxed) -

Check failure on line 82 in lib/portaudio/pa_ringbuffer.c

View workflow job for this annotation

GitHub Actions / Ubuntu 24.04

‘__tsan_memory_order_relaxed’ undeclared (first use in this function)

Check failure on line 82 in lib/portaudio/pa_ringbuffer.c

View workflow job for this annotation

GitHub Actions / coverage

‘__tsan_memory_order_relaxed’ undeclared (first use in this function)
__tsan_atomic64_load(&rbuf->readIndex, __tsan_memory_order_relaxed)) & rbuf->bigMask );
}
Expand Down

0 comments on commit 7bf45af

Please sign in to comment.