Fix incorrect operator from #349 (#352)

pull/351/head^2
Muneeb Ahmed 4 years ago committed by GitHub
parent 977b3abf54
commit 8b32c56573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save