xWantedSize += heapSTRUCT_SIZE;\r
\r
/* Ensure that blocks are always aligned to the required number of bytes. */\r
- if( xWantedSize & portBYTE_ALIGNMENT_MASK )\r
+ if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0 )\r
{\r
/* Byte alignment required. */\r
xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) );\r
\r
/* Ensure that blocks are always aligned to the required number of \r
bytes. */\r
- if( xWantedSize & portBYTE_ALIGNMENT_MASK )\r
+ if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0x00 )\r
{\r
/* Byte alignment required. */\r
xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) );\r