Fix incorrect operator from #349 (#352)

This commit is contained in:
Muneeb Ahmed 2020-10-19 10:39:33 -07:00 committed by GitHub
parent 977b3abf54
commit 8b32c56573
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ] );