Skip to content

Commit

Permalink
Compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanminko committed Aug 2, 2024
1 parent 8f0cbbd commit 1ac5f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proof/ssw/sswPart.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void * Ssw_GiaWorkerThread( void * pArg )
Par_ScorrThData_t * pThData = (Par_ScorrThData_t *)pArg;
while ( 1 )
{
while ( !atomic_load_explicit((volatile int *)&pThData->fWorking, memory_order_acquire) )
while ( !atomic_load_explicit((atomic_bool *)&pThData->fWorking, memory_order_acquire) )
nanosleep(&pause_duration, NULL);
if ( pThData->p == NULL )
{
Expand Down

0 comments on commit 1ac5f64

Please sign in to comment.