Skip to content

Commit

Permalink
Fix incorrect operator from FreeRTOS#349 (FreeRTOS#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
muneebahmed10 committed Oct 19, 2020
1 parent 977b3ab commit 8b32c56
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1667,7 +1667,7 @@ void prvPublishTask( void * pvParameters )
}
}

configASSERT( ( ulNotification & ( 1U < i ) ) == ( 1U << i ) );
configASSERT( ( ulNotification & ( 1U << i ) ) == ( 1U << i ) );

vPortFree( pxContexts[ i ] );
vPortFree( topicBuffers[ i ] );
Expand Down

0 comments on commit 8b32c56

Please sign in to comment.