diff options
author | Tobias Klauser <klto@zhaw.ch> | 2009-10-27 14:03:19 +0100 |
---|---|---|
committer | Tobias Klauser <klto@zhaw.ch> | 2009-10-27 14:03:19 +0100 |
commit | d944dd523f456b95afc6f7f829350cf107b6f665 (patch) | |
tree | 3aa082c7b22b1b33df7da49c8a577435e5308e9d | |
parent | 82267229ea33f0c21b92cee90832be978eed028f (diff) |
crc32: Coding style
-rw-r--r-- | crc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ #include "crc32.h" -#define BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1)) +#define BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL << (n)) - 1)) /* Table computed with Mark Adler's makecrc.c utility. */ static const uint32_t crc32_table[256] = { |