Hi,
I'm trying to cmpile the C program which got
following statement.
ulCRC = (ulCRC >> 8) ^
CRC32_Table[(ulCRC & 0xff) ^ *buffer++];
When I compile following
errors.
invalid operands to binary >>
invalid operands to binary & invalid operands to binary ^ If I
compile on windows platform I'm not getting those erros.
Is there any patch do I need to install?
Regards
Suneel
|