From d944dd523f456b95afc6f7f829350cf107b6f665 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 27 Oct 2009 14:03:19 +0100 Subject: crc32: Coding style --- crc32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crc32.c b/crc32.c index 4ee251a..14920a2 100644 --- a/crc32.c +++ b/crc32.c @@ -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] = { -- cgit v1.2.3-54-g00ecf