make style

new version of astyle, better separation of XOR
This commit is contained in:
Philippe Teuwen 2013-07-03 00:14:24 +02:00
parent a5d40cefc8
commit 2db4a0e7e4
5 changed files with 141 additions and 141 deletions

View file

@ -45,7 +45,7 @@ uint8_t
oddparity(const uint8_t bt)
{
// cf http://graphics.stanford.edu/~seander/bithacks.html#ParityParallel
return (0x9669 >> ((bt ^(bt >> 4)) & 0xF)) & 1;
return (0x9669 >> ((bt ^ (bt >> 4)) & 0xF)) & 1;
}
void