On Sep 2, 2008, at 2:04 PM, Maynard, Chris wrote:
Jaap,
I assume this is the line it's complaining about?:
fcs_ok = (fcs == ieee802154_crc_tvb(tvb,
tvb_reported_length(tvb)-IEEE802154_FCS_LEN));
So I think this is a GCC bug; you might want to file a bug either
against Debian or against GCC and note that "{unsigned short} ^
0xFFFF" is not equivalent to "~{unsigned short}" in an "int longer
than short" environment (the first of those doesn't flip the upper N
bits of the promoted "unsigned short", the second of those does).